select 中的 where 条件来自 table 的数据
The where condition in select the data from table
我正在尝试从 cassandra 数据库中检索分区键值为奇数的数据。
现在我有 table t 和主键 p。
我试过了
Select * from t where token(p)%2=1;
但我收到错误消息:
SyntaxException: line 1:44 no viable alternative at input '%' (...from videos_by_tag where token(tag)[%]...)
我能做什么?
我正在尝试从 cassandra 数据库中检索分区键值为奇数的数据。
现在我有 table t 和主键 p。
我试过了
Select * from t where token(p)%2=1;
但我收到错误消息:
SyntaxException: line 1:44 no viable alternative at input '%' (...from videos_by_tag where token(tag)[%]...)
我能做什么?