Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I Have Cassandra Column Family Name as Data3, In That I Have 2 Columns With Data As Follows

URL                           Data 
www.google.com               Google

I Want A Similar Query in Cassandra like ( SELECT * FROM Table1 WHERE Data='Google')

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted
    select * from Data3 where Data = 'Google'

This is CQL, as described by CQL Language Reference on DataStax.

Weirdly, that we use earlier version of Cassandra where CQL was not supported. And we never thought that we actually required something like SQL. If you wanted more detailed read these articles

  1. CQL Utility
  2. You could query without SQL type utility
  3. You could see non-SQL example/tutorial here . Here is how you select columns
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.