SQL - Table Relationships
You have this SQL statement:
But when you try to add it, you get an error. What is a likely cause?
ALTER TABLE Orders ADD FOREIGN KEY (CustomerID) REFERENCES Customers(CustomerID) ON DELETE SET NULL;
But when you try to add it, you get an error. What is a likely cause?
