Is there any way to achieve joins in Cassandra. If not, are there any alternative ways to achieve it?
Asked
Active
Viewed 353 times
-2
-
5possible duplicate of [How to do a join queries with 2 or more tables in cassandra cql](http://stackoverflow.com/questions/17248232/how-to-do-a-join-queries-with-2-or-more-tables-in-cassandra-cql) – TarasB Apr 24 '15 at 12:59
-
Cassandra does not support JOIN. Your schema should be in de-normalized form. – Jaya Ananthram Apr 27 '15 at 07:22
-
Possible duplicate of [Inner Join in cassandra CQL](https://stackoverflow.com/questions/16790297/inner-join-in-cassandra-cql) – Raedwald Jul 19 '17 at 10:11
1 Answers
0
JOINs are not supported in Cassandra - typically, the 'right' fix is to denormalize your data so that you can achieve your query with either 1 single SELECT.

Jeff Jirsa
- 4,391
- 11
- 24