Delete Table
To delete an existing table in a database we can use following syntax:
DROP TABLE table_name;
If you do not want to delete the table but just the data inside a table, then you can use following syntax:
TRUNCATE TABLE table_name;
To delete an existing table in a database we can use following syntax:
DROP TABLE table_name;
If you do not want to delete the table but just the data inside a table, then you can use following syntax:
TRUNCATE TABLE table_name;