This article is tagged with:
Sql delete table
and mysql
drop table
DROP TABLE table_name;
sql delete table
Deletes a table from a database.
Example: Removes the users table.
DROP TABLE users;
delete a table in sql
DROP TABLE table_name;
delete table
DROP TABLE table_name;
query to empty table data in sql server
TRUNCATE TABLE table_name;
delete sql
DELETE FROM table_name WHERE condition;