Skip to content

Instantly share code, notes, and snippets.

@vskrachkov
Created March 24, 2017 08:56
Show Gist options
  • Save vskrachkov/2b74d821fa99eb2aa9452d6011ba7658 to your computer and use it in GitHub Desktop.
Save vskrachkov/2b74d821fa99eb2aa9452d6011ba7658 to your computer and use it in GitHub Desktop.
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
join information_schema.tables t on t.table_name = tc.table_name
WHERE constraint_type = 'FOREIGN KEY' and t.table_schema in ('main', 'proxy')
ORDER BY tc.table_name, ccu.table_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment