Hello!
Regarding the same subject of joining, I have the following scenario:
1. I have a big table DOCS that contains the columns
UUID DOCID
sdsd 1
hdhs 3
gdhg 7
shdg 9
and so on (hope you got the idea)
2. an external list of docID
(LIST)
3
1
7
upon a I have to query("join") the DOCS DOCID column, so that the result should
be hdhs, sdsd, gdhg. How I can implement such a request? Can be this a
possible solution:
1. to add a new column LIST (in the same column family ) to the DOCS
2 add a new record in it that contain my LIST of docID
3. "Join" column LIST with DOCID column? ( perhaps a weird idea)
Thank you.
Regards,
Florin