how to drop columns with constraint from a table in sql script

Solutions on MaxInterview for how to drop columns with constraint from a table in sql script by the best coders in the world

showing results for - "how to drop columns with constraint from a table in sql script"
Natan
15 Sep 2016
1alter table tableName drop constraint [ConstraintName]
2go
3alter table tableName drop column columnName