Answers for "how to drop all table in database through command"

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

Code answers related to "how to drop all table in database through command"

Code answers related to "SQL"

Browse Popular Code Answers by Language