April 2017
Beginner to intermediate
360 pages
9h 35m
English
Suppose that you decided to scrap an entire application that uses a particular keyspace, or replace a particular table with a new table. You might want to delete an entire keyspace (along with the tables) or an entire table along with the schema respectively. To perform these operations, CQL protocol provides the DROP KEYSPACE and DROP TABLE functions:
DROP KEYSPACE "my_status"; DROP TABLE "users";
Dropping a keyspace schema will delete the data as well as the schema of all the tables within the keyspace.
Read now
Unlock full access