Answers for "drop multiple columns in tsql"

SQL
0

drop multiple columns in sql

ALTER TABLE TableName
    DROP COLUMN Column1,
    DROP COLUMN Column2;
Posted by: Guest on August-06-2021

Code answers related to "drop multiple columns in tsql"

Code answers related to "SQL"

Browse Popular Code Answers by Language