| SQL - Questions and Answers Have a SQL question? Post it here. First do a search to see if someone hasn't already answered it. |
|
|||
dropping a column from tableHi,
Please anyone can help me. I want to drop column from a table.I am using ALTER TABLE Employees DROP FirstName; The error its showing is 'FirstName' is not a constraint. Could not drop constraint. See previous errors. How to solve it? |
|
|||
|
Hi,
You could try this: Code:
alter table t drop column c1 Hope this helps, Dimitar |