我使用selectquery
子句运行where
以获取记录列表:
Select col1 from mytable where parkey='A' limit 1;
Returns 100, 200 , 300, 400
然后我需要删除select:
返回的所有记录Delete from mytable where parkey='A' and col1 IN (100, 200, 300 , 400)
如何建模此要求?
对于不同版本的cassandra,查询会有所不同吗?
答案 0 :(得分:0)
为什么你不能做DELETE FROM mytable WHERE parkey = 'A'
?