Resolved: Drop table from the database
How about deleting only data?
4 answers ( 2 marked as helpful)
Hi Snoor!
Thanks for reaching out.
The TRUNCATE TABLE
command deletes the data inside a table, but not the table itself. The syntax is:
TRUNCATE TABLE <table_name>;
Hope this helps.
Best,
Tsvetelin
DROP TABLE sales;
DROP TABLE sales;
Doped,,, I am enjoyig this course, Thanks a lot