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;

Related questions

0 votes
asked May 22, 2022 in Sql by AdilsonLima
+1 vote
asked Jul 6, 2020 in Sql by Robindeniel
...