我是cassandra的新手。在這裏,我有兩個表EVENTS
和TOWER
。我需要加入這些查詢。但我無法做到這一點。如何在cassandra中使用2個或多個表進行連接查詢cql
eid int PRIMARY KEY,
a_end_tow_id text,
a_home_circle text,
a_home_operator text,
a_imei text,
a_imsi text,
結構TOWER
表:
tid int PRIMARY KEY,
tower_address_1 text,
tower_address_2 text,
tower_azimuth text,
tower_cgi text,
tower_circle text,
tower_id_no text,
tower_lat_d text,
tower_long_d text,
tower_name text,
現在,我想就加入這些表EID
和TID
,這樣我可以獲取的數據
結構EVENTS
表兩個表。
的[內蒙古加盟卡桑德拉CQL(https://stackoverflow.com/questions/16790297/inner-join-in-cassandra-cql) – Raedwald