DROP & TRUNCATE TABLE Statement
The SQL DROP TABLE Statement
Syntax
DROP TABLE table_name;SQL DROP TABLE Example
DROP TABLE Shippers;SQL TRUNCATE TABLE
Syntax
TRUNCATE TABLE table_name;Note: Truncate works as DROP and CREATE. Hence, in front end table doesn't appears to be deleted.
Last updated