0 votes
in Sql by
An SQL query to delete a table from the database and memory while keeping the structure of the table intact?

 DROP TABLE table_name;

 DROP FROM TABLE table_name;

 DELETE FROM TABLE table_name;

 TRUNCATE TABLE table_name;
...