Answers for "how to drop datanbae table all sql"

SQL
0

how to drop all tables in sql

USE Databasename

SELECT  'DROP TABLE [' + name + '];'
FROM    sys.tables
Posted by: Guest on August-22-2021
0

drop all data from tables

DELETE FROM my_table;			-- all rows, needs a COMMIT to validate
TUNCATE TABLE my_table;			-- all rows, quicker, no possible roolback
Posted by: Guest on May-08-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language