SQL - Table Constraints
A foreign key constraint fails to create with error "Cannot add foreign key constraint". Which fix is most appropriate?
ALTER TABLE Orders ADD FOREIGN KEY (CustomerID) REFERENCES Customers(CustomerID);
ALTER TABLE Orders ADD FOREIGN KEY (CustomerID) REFERENCES Customers(CustomerID);
