Answers for "drop column command in sql server"

SQL
3

mssql remove column

ALTER TABLE table_name
DROP COLUMN column_name;
Posted by: Guest on December-14-2020
2

alter table drop column

ALTER TABLE "table_name" DROP COLUMN "column_name";
Posted by: Guest on August-16-2021

Code answers related to "drop column command in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language