Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在 CQL 中做这样的事情:
SELECT address FROM Person WHERE age= 20 or age= 25
但是 Cassandra 不支持 OR 运算符,我也不能使用 IN(20, 25),因为年龄不是主键。有没有办法解决这个问题?
提前致谢。
你可以这样做
SELECT address FROM Person WHERE age IN (20, 25)
您将必须在客户端执行析取操作,或使用 Hive 或 Pig 之类的分析工具。