Data Definition Command – Cassandra Query Language

We offer you a brighter future with FREE online courses - Start Now!!

1. Objective

In our last tutorial, we studied 10 Cassandra Shell Commands and in this Cassandra Tutorial, we will deal with the Data Definition Command in CQL.

Moreover, we will discuss keyspace in Cassandra and its various commands like Create Keyspace, Use, Alter Keyspace, Drop Keyspace, Create Table, Alter Table, Truncate Table, Drop Table,  Create Index, and Drop Index. In addition, we will discuss each command with their syntax & example.

So, let’s start Data Definition command – CQL.

Data Definition Command - Cassandra Query Language

Data Definition Command – Cassandra Query Language

Do you know top Cassandra Terminologies

2. CQL – Data Definition Command

Data definition command are used for defining the data in the database. They are another type of commands used in cqlsh prompt. In other words, they are used to create data and data storage units in the database. These commands basically are used to create and manipulate keyspace, table, and index.

3. Cassandra Keyspace

In Cassandra Data definition Command, Keyspace is basically a namespace that defines data replication on nodes. There are many clusters in a Cassandra database. Every Cassandra cluster contains one keyspace per node. This keyspace is created and altered using Data Definition Command.
Do you know  Major Difference & Similarities Between HBase vs Cassandra

a. Create Keyspace

This command is used to create a keyspace. Every system specifies a node. This system or node has a keyspace. This keyspace is a storage unit for the data. Data definition command help to create keyspace.
SYNTAX:

CREATE KEYSPACE <keyspace name> WITH <properties> AND <properties>

The statement has two main properties that are replication and durable writes. The replication property includes class and replication factor. For the class property, the user has to enter the strategy name.

For the replication factor, the user has to enter the number of replicas that have to be made. The durable_writes property includes the boolean values. These properties are optional. A user may or may not use these properties.

Have a look at Cassandra Cluster
FULL SYNTAX:

CREATE KEYSPACE 'keyspace name'
WITH replication{'class':'<strategy name>','replication factor':'<number of replicas>'}
AND durable_writes='<Boolean value>';

Example: Let us create a keyspace named ‘keyspace 1’ with simple strategy and 2 number of replicas. The durable writes for this keyspace is false.

cqlsh> CREATE KEYSPACE 'keyspace1'
... WITH replication{'class':'simple strategy','replication factor':'2'}
... AND durable_writes='false';

b. Use

This command in Data Definition Command, is used to use a keyspace stored in a database. Cassandra uses keyword ‘USE’ to perform the following function.
SYNTAX:

USE<keyspace name>

Example:
Let us use the keyspace ‘keyspace1’ that we made in the earlier example.

Let’s discuss Cassandra API

cqlsh>USE keyspace1;
cqlsh; keyspace1>

c. Alter Keyspace

This command is used to alter the properties of the keyspace. ALTER KEYSPACE command is used to do the operation. A user can alter replication and durable_writes properties. Data definition command help to alter keyspace. 
SYNTAX:

ALTER KEYSPACE <keyspace name> WITH <properties> AND <properties>

or

ALTER KEYSPACE <keyspace name>
WITH replication={'class':'strategy name','replication factor':'number of replicas'}
AND durable_writes=<'boolean type'>;\

Example: Let us alter the properties of keyspace1 from simple strategy to network topology strategy. The number of replicas, from 2 to 5 and boolean type, from false to true.

cqlsh> ALTER KEYSPACE keyspace1
... WITH replication{'class':'NetworkTopologyStrategy','no. of replicas':'5'}
... AND durable_writes= true;

Let’s See Cassandra Curd Operation – Create, Update, Read & Delete in Detail

d. Drop Keyspace

This command lets the user drop a keyspace. In other words, the user deletes the keyspace using this. To perform this operation we use DROP KEYSPACE keyword.
SYNTAX:

DROP KEYSPACE<keyspace name>;

Example: Let us delete the keyspace we developed in the previous example.

cqlsh> DROP KEYSPACE keyspace1;

e. Create Table

A table is one of the most important storage units in Cassandra Database. The user has the ability to create a table that can be deployed to the Cassandra database.

Have a look at Cassandra Troubleshooting
SYNTAX:

CREATE TABLE/COLUMN FAMILY<table name>
('<column-definition>','<columan-definition>')
(WITH<option>AND<option>)

The statement allowed the user to set field name and their respective field type and also the primary. The primary key is basically a main column that is used for identification of a row.
FULL SYNTAX:

CREATE TABLE <table name>
<field name1> <field type1>
<field name2> <field type2>
<field name3> <field type3>
primary key(<field name>);

EXAMPLE: Let us create a table ‘student ‘ with fields, name, age, id, and branch. Primary key is id.

cqlsh;keyspace1> CREATE TABLE student
... name text,
... age int,
... id int,
... branch text,
... primary key (id);

f. Alter Table

A User can change the properties of the table. We use ALTER TABLE command to perform the following operation. The user can perform two operations, add a column and drop a column.
SYNTAX:

ALTER TABLE/COLUMN FAMILY <table name><instruction>;

Read About Architecture of Cassandra in Detail

i. Add a column

To add a column the user can use the following syntax.

ALTER TABLE <table name>
ADD <new column> <data type>;

ii. Drop a column

to drop a column user can use the following syntax.

ALTER TABLE <table name>
DROP <column name>;

Example: Let us alter the table student. In the table, we will add a column of a city and drop the column age.
ALTER TABLE student

ADD city text;
ALTER TYPE student
DROP age;

g. Truncate Table

If a table is not required by the user, the user can truncate the whole table. The keyword used to truncate the table is TRUNCATE. When the user truncates the table, all the entry in the rows is deleted. The table stays but with zero rows.

Let’s revise Cassandra User-Defined Types
SYNTAX:

TRUNCATE<table name>;

Example: Let’s truncate the table student.

TRUNCATE student;

Do you know How Cassandra Stores Data – Cassandra Data Model

h. Drop Table

If the user wants to completely delete the table from the database, the user can use this command. We use DROP TABLE keyword to perform the following operation.
SYNTAX:

DROP TABLE<table name>;

Example: In this example, we will delete the table student.

DROP TABLE student;

i. Create Index

The user can set an index on a field in a table. We use CREATE INDEX keyword to perform the following operation.
SYNTAX:

CREATE INDEX <field name> ON <table name>

Example: In this example, we will create an index on ‘id’ at table ‘student’.

Have a look at Cassandra Built-in Collection

cqlsh;keyspcae1> CREATE INDEX id ON student;

j. Drop Index

A user can drop the set index on the field in a table. A user can use DROP INDEX keyword to perform the function. Data Definition Command plays main role in it. 
SYNTAX:

DROP INDEX <field name>;

Example: In this example, we will drop the index on ‘id’ at table ‘student’.

cqlsh;keyspcae1> DROP INDEX id;

Let’s Explore Applications of Cassandra in Detail
So, this was all about CQL-Data Definition Command Tutorial. Hope you like our explanation.

4. Conclusion

Hence, in this CQL tutorial, we studied Data definition Command in Cassandra Query Langauge (CQL), Create keyspace, use, alter keyspace, drop keyspace, create table, alter table, truncate table, drop table, create index, and drop index with examples and syntax.

These data definition commands help to create & alter Cassandra keyspace, table, and index.

Furthermore, if you have any query regarding CQL Data definition Command, feel free to ask in the command box.
Related Topic- Cassandra Interview Questions
For reference

You give me 15 seconds I promise you best tutorials
Please share your happy experience on Google

follow dataflair on YouTube

1 Response

  1. Sourabh Mittal says:

    create Keyspace and other commands need updation. I was getting error when tried with 3.11 version of cassandra. Then I referred apache website and got slightly different command which worked.

    Apart from that I found this tutorial very helpful to begin with.

Leave a Reply

Your email address will not be published. Required fields are marked *