Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 1.62 KB

step4.md

File metadata and controls

43 lines (36 loc) · 1.62 KB
Cassandra Query Language ℹ️ For technical support, please contact us via email or LinkedIn.
⬅️ Back Step 4 of 10 Next ➡️
Set a working keyspace

Many CQL statements work with tables, indexes and other objects defined within a specific keyspace. For example, to refer to a table, we have to either use a fully-qualified name consisting of a keyspace name and a table name, or set a working keyspace and simply refer to the table by its name. For convenience, we go with the second option.

✅ Set the current working keyspace:

USE ks_cql_intro;
⬅️ Back Next ➡️