DROP KEYSPACE

Remove the keyspace.

Remove the keyspace.

Synopsis 

DROP ( KEYSPACE | SCHEMA )  keyspace_name
Legend
  • Uppercase means literal
  • Lowercase means not literal
  • Italics mean optional
  • The pipe (|) symbol means OR or AND/OR
  • Ellipsis (...) means repeatable

A semicolon that terminates CQL statements is not included in the synopsis.

Description 

A DROP KEYSPACE statement results in the immediate, irreversible removal of a keyspace, including all tables and data contained in the keyspace. You can also use the alias DROP SCHEMA.

Example 

DROP KEYSPACE MyTwitterClone;