I want to add a foreign key from Table Customers
, row= \"Customer ID\"
to Table Pet, row= \"Customer ID\"
.
-- Table struct
The CustomerID
you're trying to enter in PETS
table, does not exist in CUSTOMERS
table, and that is why your Foreign Key constraint fails and throws error.
You need to ensure that the CustomerIDs you're entering in your Pets
table, exist in Customers
table OR simply insert NULL
in the PETS.CUSTOMERID
field