A family of Microsoft relational database management systems designed for ease of use.
Thanks. There is already a record in the Orders table, with CustomerId = 0. This is not a valid CustomerId from the Customers table.
Either delete this record, or change the CustomerId to 1 (the ID of Ken Wheeler).
After that, you'll be able to enforce referential integrity for the relationship between Customers and Orders.
Tip: you don't really want Orders records with 0 in the CustomerId or ProductId field.
Open the Orders table in design view.
Select the CustomerId field and clear the Default Value property.
Do the same for the ProductId field.
Save the table design.