How to do a join queries with 2 or more tables in cassandra cql

后端 未结 3 1542
北荒
北荒 2020-12-04 18:20

I am new to cassandra. Here I have two tables EVENTS and TOWER. I need to join those for some queries. But I\'m not enable to do it.

Struc

3条回答
  •  春和景丽
    2020-12-04 18:25

    PlayOrm is a good option for doing joins on scalable systems with a special Scalable SQL language in which you can join partitions (ie. you never want to join 1 billion rows with another billion rows). It has tons of noSQL patterns and is a complete break from hibernate and JPA to mimic noSQL patterns with client side joins when needed.

提交回复
热议问题