While trying to add a foreign Key constraint to two very large tables, I get the error.
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails
This is usually due to some data in the primary table not present in the foreign table, normally I check for known anomalies like null values, out of range values etc, once these are taken care of, I can get the constraint satisfied. However this time the problem is more subtle.
What I want to know is there any way to query for all the rows which are causing the constraint to fail??