Created
February 7, 2022 13:19
-
-
Save bianchi/0bfa6772e0fb09127f661836e58086e0 to your computer and use it in GitHub Desktop.
Find foreign keys referencing a specific table: postgres
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
AND tc.table_schema = 'mySchemaName' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment