Skip to content

Instantly share code, notes, and snippets.

@beginor
Last active July 19, 2019 16:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beginor/fed2086d8dff5e97280235f5bf86c55e to your computer and use it in GitHub Desktop.
Save beginor/fed2086d8dff5e97280235f5bf86c55e to your computer and use it in GitHub Desktop.
[查找表的外键关联] find a table's foreign keys postgresql #PostgreSQL
SELECT
tc.table_schema,
tc.constraint_name,
tc.table_name,
kcu.column_name,
ccu.table_schema AS foreign_table_schema,
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
AND tc.table_schema = kcu.table_schema
JOIN information_schema.constraint_column_usage AS ccu
ON ccu.constraint_name = tc.constraint_name
AND ccu.table_schema = tc.table_schema
WHERE constraint_type = 'FOREIGN KEY' AND tc.table_name='mytable';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment