SQL - Table Relationships
You have this SQL statement:
But it returns an error. What is a likely cause?
ALTER TABLE Orders ADD FOREIGN KEY (CustomerID) REFERENCES Customers(CustomerID);But it returns an error. What is a likely cause?
