Login
Remember
Register
Ask a Question
An SQL query to delete a table from the database and memory while keeping the structure of the table intact?
0
votes
asked
Dec 15, 2020
in
Sql
by
SakshiSharma
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;
#sql-delete
#delete-database
Please
log in
or
register
to answer this question.
0
Answers
...