What is the difference between:
AND:
Code:
FOREIGN KEY (CustomerId) REFERENCES Customers (Id)
Code:
CONSTRAINT orders_custonmers_fk FOREIGN KEY (CustomerId) REFERENCES Customers (Id)
Comment