SQL - Table Relationships
This SQL code has an error:
What is the error?
CREATE TABLE Orders (id INT, customer_id INT, FOREIGN KEY customer_id REFERENCES Customers(id));
What is the error?
