Skip to content

Instantly share code, notes, and snippets.

@aj07mm
Forked from PickledDragon/list-constraints.sql
Created December 6, 2017 18:08
Show Gist options
  • Save aj07mm/fe29609c3cdb5fe5ff08e2bd01744f01 to your computer and use it in GitHub Desktop.
Save aj07mm/fe29609c3cdb5fe5ff08e2bd01744f01 to your computer and use it in GitHub Desktop.
Postgres list all constraints
SELECT
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 AS tc
JOIN information_schema.key_column_usage AS kcu
ON tc.constraint_name = kcu.constraint_name
JOIN information_schema.constraint_column_usage AS ccu
ON ccu.constraint_name = tc.constraint_name
WHERE constraint_type = 'FOREIGN KEY'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment