Skip to content

Instantly share code, notes, and snippets.

@maxcollombin
Last active February 10, 2024 08:19
Show Gist options
  • Save maxcollombin/8af4f23e6920ff37a22fc87fd72e3883 to your computer and use it in GitHub Desktop.
Save maxcollombin/8af4f23e6920ff37a22fc87fd72e3883 to your computer and use it in GitHub Desktop.
PostgreSQL script to list relations between tables
SELECT
tc.constraint_name AS constraint_name,
tc.table_name AS table_name,
kcu.column_name AS 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