Re: Problem with CQL

2013-02-28 Thread Jabbar
Because your name field is a primary key. You must specify the primary key for the query to be valid. On 28 February 2013 17:51, Everton Lima wrote: > Thanks. Thats work. > Why an Equal restriction is required? > > > 2013/2/28 Jason Wee > >> You need an equal operator in your query. For instan

Re: Problem with CQL

2013-02-28 Thread Everton Lima
Thanks. Thats work. Why an Equal restriction is required? 2013/2/28 Jason Wee > You need an equal operator in your query. For instance, SELECT * FROM > users WHERE country = 'malaysia' age > 20 > > > On Thu, Feb 28, 2013 at 10:04 PM, Everton Lima wrote: > >> Hello, >> I was using cql 2. I have

Re: Problem with CQL

2013-02-28 Thread Jason Wee
You need an equal operator in your query. For instance, SELECT * FROM users WHERE country = 'malaysia' age > 20 On Thu, Feb 28, 2013 at 10:04 PM, Everton Lima wrote: > Hello, > I was using cql 2. I have the following query: >SELECT * FROM users WHERE age > 20 AND age < 25; > > The table wa