i am using Python Cassandra driver and CQL on back end, i want to update the data with IN operator
a = [1,2,3,4]
I want to run the following query
query = session.execute("update users set status=True where userid IN(%s)",[a])
but it does not work, i want to update the record where userid in list
Can any body help me please?