Problem Statement
Adding a Named FOREIGN KEY Constraint to an Existing Orders Table Consider the following table: CREATE TABLE Orders ( OrderID int, CustomerID int, OrderDate date, Amount decimal(10,2), PRIMARY KEY (OrderID) ); Which of the following SQL statements would you use to add a foreign key constraint named FK_Orders_Customers to the Orders table, referencing the Customers table on the CustomerID column?