Re: CQL query issue when fetching data from Cassandra

2012-02-16 Thread aaron morton
FROM TestCF WHERE status IN ('Failed', 'Success') > 2) The "OR" operator is not fetching data. >SELECT * FROM TestCF WHERE status='Failed' OR status='Success' > 3) If I use "AND" operator, it also not sending data. Query do

Re: CQL query issue when fetching data from Cassandra

2012-02-16 Thread R. Verlangen
#x27; OR status='Success' > 3) If I use "AND" operator, it also not sending data. Query doesn't have > issues, but result set is null. >SELECT * FROM TestCF WHERE status='Failed' AND status='Success' > 4) Is there any thing similar to "L

CQL query issue when fetching data from Cassandra

2012-02-15 Thread Roshan
status='Failed' AND status='Success' 4) Is there any thing similar to "LIKE" in CQL? I want to search data based on some part of string. Could someone please help me to solve the above issues? Thanks. -- View this message in context: http://cassandra-user-incubator-