SQL - Table Constraints
You wrote this SQL to add a primary key constraint:
But you get an error saying the constraint name already exists. What should you do?
ALTER TABLE Customers ADD CONSTRAINT PK_Customers PRIMARY KEY (CustomerID);But you get an error saying the constraint name already exists. What should you do?
