时间:2021-05-24
今天更新两个SQL。是用来查询PG中,主表被子表引用的外键,或子表引用了哪个主表的主键。
废话不多说,直接上实验!
CentOS 7 + PG 10
创建两个实验表,test01为主表,test02为子表,test02引用test01中的id列。
test=# create table test01(test(# id int primary key,test(# col1 varchar(20)test(# );CREATE TABLE test=# create table test02(test(# id int primary key,test(# test01_id int references test01(id),test(# col1 varchar(20)test(# );CREATE TABLE插入数据
test=# insert into test01 values (1, 'a');INSERT 0 1test=# insert into test01 values (2, 'b');INSERT 0 1test=# insert into test01 values (3, 'c');INSERT 0 1test=# insert into test02 values (1, 1, 'a');INSERT 0 1test=# insert into test02 values (2, 1, 'a');INSERT 0 1test=# insert into test02 values (3, 1, 'a');INSERT 0 1test=# insert into test02 values (4, 2, 'b');INSERT 0 1test=# insert into test02 values (5, 2, 'b');INSERT 0 1test=# insert into test02 values (6, 11, 'b');ERROR: insert or update on table "test02" violates foreign key constraint "test02_test01_id_fkey"DETAIL: Key (test01_id)=(11) is not present in table "test01".查询主表被哪个子表引用。如果结果为空,说明没有任何子表引用的该表。
test=# SELECTtc.constraint_name,tc.table_name, # 子表kcu.column_name,ccu.table_name AS foreign_table_name, # 主表ccu.column_name AS foreign_column_name,tc.is_deferrable,tc.initially_deferredFROMinformation_schema.table_constraints AS tcJOIN information_schema.key_column_usage AS kcu ON tc.constraint_name = kcu.constraint_nameJOIN information_schema.constraint_column_usage AS ccu ON ccu.constraint_name = tc.constraint_namewhere constraint_type = 'FOREIGN KEY' AND ccu.table_name='test01'; # 输入主表constraint_name | table_name | column_name | foreign_table_name | foreign_column_name | is_deferrable | initially_deferred-----------------------+------------+-------------+--------------------+---------------------+---------------+--------------------test02_test01_id_fkey | test02 | test01_id | test01 | id | NO | NO(1 row)查询子表引用的哪个主表。如果结果为空,说明没有任何引用主表。
test=# SELECTtc.constraint_name,tc.table_name, # 子表kcu.column_name,ccu.table_name AS foreign_table_name,ccu.column_name AS foreign_column_name, # 主表tc.is_deferrable,tc.initially_deferredFROMinformation_schema.table_constraints AS tcJOIN information_schema.key_column_usage AS kcu ON tc.constraint_name = kcu.constraint_nameJOIN information_schema.constraint_column_usage AS ccu ON ccu.constraint_name = tc.constraint_nameWHERE constraint_type = 'FOREIGN KEY' AND tc.table_name='test02'; # 输入子表constraint_name | table_name | column_name | foreign_table_name | foreign_column_name | is_deferrable | initially_deferred-----------------------+------------+-------------+--------------------+---------------------+---------------+--------------------test02_test01_id_fkey | test02 | test01_id | test01 | id | NO | NO(1 row)补充:PostgreSQL 外键引用查询
根据一个表名,查询所有外键引用它的表,以及那些外键的列名
key_column_usage(系统列信息表),
pg_constraint(系统所有约束表)
SELECT x.table_name, x.column_name FROM information_schema.key_column_usage x INNER JOIN (SELECT t.relname, a.conname FROM pg_constraint a INNER JOIN pg_class ft ON ft.oid = a.confrelid INNER JOIN pg_class t ON t.oid = a.conrelid WHERE a.contype = 'f' AND a.confrelid = (select e.oid from pg_class e where e.relname = 'xxx_table') ) tp ON (x.table_name = tp.relname AND x.constraint_name = tp.conname)示例:
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
添加外键,altertableB 语法:altertable表名addconstraint外键约束名foreignkey(列名)references引用外
建立外键的前提:本表的列必须与外键类型相同(外键必须是外表主键)。外键作用:使两张表形成关联,外键只能引用外表中的列的值!指定主键关键字:foreignkey(
在Activity中调用finish()或按返回键退出时,若有资源被其他对象引用不能释放(如context被某个单例对象引用或正在线程中被使用),则activi
外键的作用:保持数据一致性,完整性,主要目的是控制存储在外键表中的数据。使两张表形成关联,外键只能引用外表中的列的值!例如:ab两个表a表中存有客户号,客户名称
在访问PHP类中的成员变量或方法时,如果被引用的变量或者方法被声明成const(定义常量)或者static(声明静态),那么就必须使用操作符::,反之如果被引用