SQL - Table Relationships
You wrote this SQL:
Why does this cause an error?
CREATE TABLE Sales (SaleID INT PRIMARY KEY, ClientID INT, FOREIGN KEY ClientID REFERENCES Clients(ClientID));
Why does this cause an error?
