Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.37 KB

step4-cassandra.md

File metadata and controls

46 lines (37 loc) · 1.37 KB
Exercise 1.2: Basic CQL Fundamentals ℹ️ For technical support, please contact us via email.
⬅️ Back Step 4 of 4 Next ➡️
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;
⬅️ Back Next ➡️