我建立了一个像这样的表:
create table tbl (
email text,
isPublic boolean,
region text,
data map<text, frozen<list<text>>>,
primary key(email, region)
)
,并且想知道此查询的CQL等效项是什么,因为CQL不支持or
:
select * from tbl where (email="foo@foo.com" and region="US") or isPublic=True;