Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.64 KB

step1.md

File metadata and controls

49 lines (41 loc) · 1.64 KB
Cassandra Query Language ℹ️ For technical support, please contact us via email or LinkedIn.
⬅️ Back Step 1 of 10 Next ➡️
CQL

Cassandra Query Language (CQL) is the primary language for interacting with Apache Cassandra databases. CQL data definition and data manipulation statements include:

CQL Data Definition

  • CREATE | ALTER | DROP KEYSPACE
  • USE
  • CREATE | ALTER | DROP | TRUNCATE TABLE

CQL Data Manipulation

  • INSERT (Create)
  • SELECT (Read)
  • UPDATE (Update)
  • DELETE (Delete)

Let's use some of these statements and see how they work.

⬅️ Back Next ➡️