sql [查找表的外键关联]找到一个表的外键postgresql #PostgreSQL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql [查找表的外键关联]找到一个表的外键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';

以上是关于sql [查找表的外键关联]找到一个表的外键postgresql #PostgreSQL的主要内容,如果未能解决你的问题,请参考以下文章

mysql表中,表的外键关联自身主键,为啥插入不了数据?

查询关联表的外键

hive建立数据仓库 事实表的外键和维度表主键怎么关联 啥命令

MySQL 从一个表中获取由另一个表的外键关联的内容

mysql数据库怎么删除一个表的外键

联结表将包含单个表的外键或主键