I am trying to run a simple query on cassandra host via python.
>>session.execute('SELECT * from "users" WHERE "userid"=42607589003')
But i get error below,"userid" is of type text, i tried different permutations by enclosing in double quotes too, but cannot figure out why this error is thrown
>>cassandra.InvalidRequest: Error from server: code=2200 [Invalid query] message="Invalid INTEGER constant (42607589003) for Identifier of type text"
can somebody let me know whats wrong here?
"SELECT * FROM users WHERE userid='abc'"