Answers for "remove multi column from the table sql"

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 "remove multi column from the table sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language