Below is how an entry looks like in the Cassandra:
id | address | age | family | name | siblings
-----------------------------------------------------------------
1 | {'city': 'c1', 'rue': 'r1'} | 23 | si | si | {'b', 'd'}
I want to select based on the city which is a child of JSON in the address column:
I am not sure if the following are the correct statements:
select address from Persons address.city='f';
select address.city from Persons ;