Answers for "how to drop a column in sql that is a constraint"

SQL
3

sql drop column

ALTER TABLE my_schema.my_table DROP COLUMN my_column;
Posted by: Guest on May-02-2021
0

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

alter table tableName drop constraint [ConstraintName]
go
alter table tableName drop column columnName
Posted by: Guest on January-05-2021

Code answers related to "how to drop a column in sql that is a constraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language