Exercise 1.2: Basic CQL Fundamentals
ℹ️ For technical support, please contact us via email.
Truncate the table
✅ Let's remove the data from our table using TRUNCATE
:
TRUNCATE videos;
✅ Use SELECT
to verify that the table is empty:
SELECT * FROM videos;