How do I delete a number of rows in one go in Cassandra? -


i run selectquery where clause list of records:

select col1 mytable  parkey='a'  limit 1; returns 100, 200 , 300, 400  

i need delete records returned select:

delete  mytable parkey='a'  , col1 in (100, 200, 300 , 400) 

how model requirement?

would queries different different versions of cassandra?

why can't delete mytable parkey = 'a'?


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -