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.
Structure of EVENTS
table:
eid int PRIMARY KEY,
a_end_tow_id text,
a_home_circle text,
a_home_operator text,
a_imei text,
a_imsi text,
Structure of TOWER
table:
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,
Now, I want to join these table with respect to EID
and TID
so that I can fetch the data of both tables.