Skip to content

Instantly share code, notes, and snippets.

@hugobessa
Last active January 9, 2019 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugobessa/34be9ae0bd145e9140c1faf052e94d55 to your computer and use it in GitHub Desktop.
Save hugobessa/34be9ae0bd145e9140c1faf052e94d55 to your computer and use it in GitHub Desktop.
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, cc.is_nullable AS column_is_nullable
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
JOIN information_schema.columns cc ON cc.column_name = kcu.column_name AND cc.table_name = kcu.table_name
WHERE constraint_type = 'FOREIGN KEY'
AND ccu.table_name='myTableName' -- replace this string with your table name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment