A developer needs to ensure that a 'Customer_ID' field in a 'Orders' table always references a valid ID in the 'Customers' table. Which constraint should be applied?
FOREIGN KEY enforces referential integrity between tables.
Why this answer
A foreign key constraint ensures referential integrity between two tables by requiring that the value in the child table exists in the parent table.