Answers for "sql syntax to drop all columns in a table"

SQL
9

drop columnsql

ALTER TABLE table_name
DROP COLUMN column_name
Posted by: Guest on December-23-2020
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 "sql syntax to drop all columns in a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language