Home » Cassandra Truncate Table

Cassandra Truncate Table

by Online Tutorials Library

Cassandra Truncate Table

TRUNCATE command is used to truncate a table. If you truncate a table, all the rows of the table are deleted permanently.

Syntax:

Example:

We have a table named “student” having the following data:

Cassandra Truncate table 1

Now, we use TRUNCATE command:

Cassandra Truncate table 2

Now, the table is truncated. You can verify it by using SELECT command.

Cassandra Truncate table 3

You can see that table is truncated now.


You may also like