Top "Cql3" questions

Cassandra Query Language (CQL) is a SQL (Structured Query Language)-like language for querying Cassandra.

Cassandra CQL searching for element in list

I have a table that has a column of list type (tags): CREATE TABLE "Videos" ( video_id UUID, title VARCHAR, …

cassandra cql cql3
Cassandra CQL - clustering order with multiple clustering columns

I have a column family with primary key definition like this: ... PRIMARY KEY ((website_id, item_id), user_id, date) …

cassandra cql cql3 cqlsh
Bad Request: No indexed columns present in by-columns clause with Equal operator : CQL error?

I have below table in CQL- create table test ( employee_id text, employee_name text, value text, last_modified_date …

cassandra cql cql3
Cassandra IN clause on index

Assume a simple table with one insert (or without this insert, doesn't really matter). CREATE TABLE test ( x int, y …

cassandra cql cql3 database nosql
mismatched input ')' expecting EOF in CQL

created keyspace and using CQL but getting an Error CREATE KEYSPACE demodb WITH strategy_class = 'org.apache.cassandra.locator.SimpleStrategy' ... …

cassandra cql cql3 cassandra-cli
Prepared Statement with collection in IN clause in Datastax Cassandra CQL driver

I am trying to run the following query SELECT edge_id, b_id FROM booking_by_edge WHERE edge_id …

cassandra cql cql3 datastax-enterprise datastax-java-driver
Prettifying results of cqlsh commands in Linux terminal

Is there any way to prettify the results of cql commands in the Linux terminal while using the cqlsh utility (…

cassandra cql3 cqlsh
Cassandra CQL query check multiple values

How can I check if a non-primary key field's value is either 'A' or 'B' with a Cassandra CQL query? (…

cassandra cql3
Non frozen collections and user defined types on Cassandra 2.1.8

I'm trying to run the following example from here CREATE TYPE address ( street text, city text, zip int ); CREATE TABLE …

cassandra cql datastax cql3
Query using composite keys, other than Row Key in Cassandra

I want to query data filtering by composite keys other than Row Key in CQL3. These are my queries: CREATE …

cassandra composite-key cql3