Skip to content

Instantly share code, notes, and snippets.

@rex-sheridan
Created February 24, 2021 13:51
Show Gist options
  • Save rex-sheridan/8af2ce4d5f18bae013f7a2c676b212ff to your computer and use it in GitHub Desktop.
Save rex-sheridan/8af2ce4d5f18bae013f7a2c676b212ff to your computer and use it in GitHub Desktop.
Find foreign keys referencing a table: postgres
-- Find foreign keys referencing a table: postgres
-- From https://bowerstudios.com/node/1052
SELECT tc.table_schema, tc.constraint_name, tc.table_name, kcu.column_name, ccu.table_name
AS foreign_table_name, ccu.column_name AS foreign_column_name
FROM information_schema.table_constraints tc
JOIN information_schema.key_column_usage kcu ON tc.constraint_name = kcu.constraint_name
JOIN information_schema.constraint_column_usage ccu ON ccu.constraint_name = tc.constraint_name
WHERE constraint_type = 'FOREIGN KEY'
AND ccu.table_name='myTableName';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment