0 votes
in Cassandra by
Differentiate between Drop and Truncate in CQLSH

1 Answer

0 votes
by

The Drop table command drops specified table including all the data from the keyspace.

The Truncate table command is used to truncate a table and deletes all the rows of the table permanently.

...