Hi,
Can anyone please tell me if we can a select statement to find the constraints. To be clear, will this work in Access, it works in oracle
SELECT u2.table_name
FROM user_constraints u1, user_constraints u2
WHERE u1.table_name = 'PART'
AND u2.r_constraint_name = u1.constraint_name
And...