delet a table in sql code example
Example 1: sql delete table
Deletes a table from a database.
Example: Removes the users table.
DROP TABLE users;
Example 2: drop a table
DROP TABLE table_name;
Deletes a table from a database.
Example: Removes the users table.
DROP TABLE users;
DROP TABLE table_name;