SELECT * FROM sample WHERE id = '2' OR uid = '1';
我在cqlsh
中收到错误Bad Request: line 1:36 missing EOF at 'OR'
Cassandra中的or
运算符是否可以使用 cqlsh client ?
答案 0 :(得分:4)
答案 1 :(得分:4)
虽然doanduyhai原则上是正确的,但如果您需要限制同一列,则有'IN'运算符:
cqlsh:demodb> SELECT * FROM sample WHERE id IN ('2','1');
您可以使用的操作类型在很大程度上取决于数据模型。我强烈推荐the data model section in datastax' documentation。