热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

PostgreSQL外键高级应用

有开发同事问及postgresql外键的用法,这里普及一下。外键是一个很基础的概念,使用得当可以对事务的一致性有很好的保障,方法上和Oracle是很接近的,作用很简单地说就是保证子表的数据都能在主表中找到,可保证数据一致性。建立主表postgres#createtab

有开发同事问及postgresql外键的用法,这里普及一下。外键是一个很基础的概念,使用得当可以对事务的一致性有很好的保障,方法上和Oracle是很接近的,作用很简单地说就是保证子表的数据都能在主表中找到,可保证数据一致性。

建立主表

postgres=# create table t_parent(
postgres(# id serial primary key,
postgres(# vname varchar(32),
postgres(# ctime timestamp without time zone);
NOTICE:  CREATE TABLE will create implicit sequence "t_parent_id_seq" for serial column "t_parent.id"
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "t_parent_pkey" for table "t_parent"
CREATE TABLE


建立子表

postgres=# create table t_child(
postgres(# cid int4,
postgres(# vname varchar(32));
CREATE TABLE


查看表外键

postgres=# \d+ t_child
                               Table "public.t_child"
 Column |         Type          | Modifiers | Storage  | Stats target | Description
--------+-----------------------+-----------+----------+--------------+-------------
 cid    | integer               |           | plain    |              |
 vname  | character varying(32) |           | extended |              |
Foreign-key constraints:
    "t_child_fk" FOREIGN KEY (cid) REFERENCES t_parent(id)
Has OIDs: no

在PGADMINIII中查看
CREATE TABLE t_child
(
  cid integer,
  vname character varying(32),
  CONSTRAINT t_child_fk FOREIGN KEY (cid)
      REFERENCES t_parent (id) MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION
)
WITH (
  OIDS=FALSE
);
ALTER TABLE t_child
  OWNER TO postgres;

建立外键关联,如果子表有父表没有的数据,会报错

postgres=# alter table t_child add constraint t_child_fk foreign key(cid) references t_parent (id) ;
ALTER TABLE

--另一种情况,需要先清理数据
postgres=# alter table t_child add constraint t_child_fk foreign key(cid) references t_parent (id) ;
ERROR:  insert or update on table "t_child" violates foreign key constraint "t_child_fk"
DETAIL:  Key (cid)=(100001) is not present in table "t_parent".


查看外键的关联关系

postgres=# SELECT
postgres-#     tc.constraint_name, tc.table_name, kcu.column_name,
postgres-#     ccu.table_name AS foreign_table_name,
postgres-#     ccu.column_name AS foreign_column_name,
postgres-#     tc.is_deferrable,tc.initially_deferred
postgres-# FROM
postgres-#     information_schema.table_constraints AS tc
postgres-#     JOIN information_schema.key_column_usage AS kcu ON tc.constraint_name = kcu.constraint_name
postgres-#     JOIN information_schema.constraint_column_usage AS ccu ON ccu.constraint_name = tc.constraint_name
postgres-# WHERE constraint_type = 'FOREIGN KEY' AND tc.table_name='t_child';
 constraint_name | table_name | column_name | foreign_table_name | foreign_column_name | is_deferrable | initially_deferred
-----------------+------------+-------------+--------------------+---------------------+---------------+--------------------
 t_child_fk      | t_child    | cid         | t_parent           | id                  | NO            | NO
(1 row)

外键数据生成
postgres=# insert into t_parent select generate_series(1,100000),md5(random()::text),clock_timestamp();
INSERT 0 100000

postgres=# insert into t_child select id,md5(random()::text) from t_parent;
INSERT 0 100000

postgres=# select * from t_parent limit 10;
 id |              vname               |           ctime            
----+----------------------------------+----------------------------
  2 | f12c9b7d21f467a6c47b5adca5a5478e | 2013-05-20 20:51:08.678242
  3 | ce758f15428d56be00ba5b0834daa5af | 2013-05-20 20:51:08.678284
  4 | 55892bd9a81db1566c7fefb3e459dcd6 | 2013-05-20 20:51:08.678303
  5 | 5c9dabb81782953fdfea3da0d7bafdbb | 2013-05-20 20:51:08.678322
  6 | e5358f0c23d9042e599aa8d03b6b8944 | 2013-05-20 20:51:08.67834
  7 | e51c3ab198d605699de5472dc7589712 | 2013-05-20 20:51:08.678357
  8 | db8c0b2f7ad6579594f79abf2828f70e | 2013-05-20 20:51:08.678376
  9 | 904630d3dcab4308edea4bed5f6b556d | 2013-05-20 20:51:08.678394
 10 | 1c419398ac492b16be8a252a9c8e28ba | 2013-05-20 20:51:08.678411
 11 | b774007d756a6c4b7c54d3854eb964b7 | 2013-05-20 20:51:08.678429
(10 rows)


外键对数据导入的影响测试

postgres=# \timing
Timing is on.
postgres=# copy t_child(cid,vname) to '/home/postgres/t_child.bak';
COPY 100000
Time: 207.030 ms
postgres=# truncate table t_child;
TRUNCATE TABLE
Time: 43.775 ms
postgres=# copy t_child(cid,vname) from '/home/postgres/t_child.bak';
COPY 100000
Time: 10325.357 ms
postgres=# truncate table t_child;
TRUNCATE TABLE
Time: 16.749 ms
postgres=# alter table t_child drop constraint t_child_fk;
ALTER TABLE
Time: 26.552 ms
postgres=# copy t_child(cid,vname) from '/home/postgres/t_child.bak';
COPY 100000
Time: 755.239 ms
postgres=#

可以看到加了外键后对数据的导入影响很大,这里只是测试了10W数据的COPY导入,数据量再大一点差别更明显,所以大数据的导入请先去掉各种约束,这对其他DB也适用。

UPDATE和DELETE的外键属性
上面建的外键默认是MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION,除了NO ACTION,还有cascade/restrict这两种常用的。
no action和restrict对于操作都会检查,如果不符合约束则会报ERROR并退出,数据还是不变,唯一的区别是no action可以设置约束延迟生效,而restrict不允许,见http://my.oschina.net/Kenyon/blog/126360
cascade则是级联的意思,如删除父表数据时子表也存在则会级联删除
cascade示例:

postgres=# alter table t_child add constraint t_child_fk foreign key(cid) references t_parent (id) match simple on update cascade on delete cascade;
ALTER TABLE


postgres=# select * from t_child where cid = 100003;
 cid | vname
-----+-------
(0 rows)

postgres=# select * from t_parent where id = 100003;
 id | vname | ctime
----+-------+-------
(0 rows)

postgres=# update t_parent set id = 100003 where id = 100002;
UPDATE 1
postgres=# select * from t_parent where id = 100003;
   id   |              vname               |           ctime           
--------+----------------------------------+----------------------------
 100003 | 20e9c1b966bc9fc133339bad7d374dd8 | 2013-05-20 20:51:08.677156
(1 row)

postgres=# select * from t_child where cid = 100003;
  cid   |              vname              
--------+----------------------------------
 100003 | 9fd9b9d977abcba5f8b38658b4116985
(1 row)

这对delete是一样的,主表数据被删,关联子表数据也被删

同样,匹配的方式也有三种match simple/match full/match partition,其实是两种
simple(默认)
full
partition(功能还未完成)
simple与full的区别是simple允许多字段外键的部分字段数据为Null,而full一般是不允许外键字段数据为Null,除非该外键的所有字段都为Null。示例:

postgres=# create table t_p(id1 int,id2 int);
CREATE TABLE
postgres=# create table t_c(id1 int,id2 int);
CREATE TABLE
postgres=# insert into t_p values(1,2),(1,3),(2,3);
INSERT 0 3
postgres=# alter table t_p add constraint dd unique(id1,id2);
NOTICE:  ALTER TABLE / ADD UNIQUE will create implicit index "dd" for table "t_p"
ALTER TABLE
postgres=# alter table t_c add constraint fk_c foreign key(id1,id2) references t_p(id1,id2) match full;
ALTER TABLE
postgres=# insert into t_c values(1,2);
INSERT 0 1
postgres=# insert into t_c values(null,null);
INSERT 0 1
postgres=# insert into t_c values(1,null);
ERROR:  insert or update on table "t_c" violates foreign key constraint "fk_c"
DETAIL:  MATCH FULL does not allow mixing of null and nonnull key values.

--另外一种模式
postgres=# alter table t_c drop constraint fk_c;
ALTER TABLE
postgres=# alter table t_c add constraint fk_c foreign key(id1,id2) references t_p(id1,id2) match simple;
ALTER TABLE
postgres=# insert into t_c values(1,2);
INSERT 0 1
postgres=# insert into t_c values(1,null);
INSERT 0 1
postgres=# insert into t_c values(null,null);
INSERT 0 1

可以看到插空值入有明显的区别。
推荐阅读
  • 本文介绍了在开发Android新闻App时,搭建本地服务器的步骤。通过使用XAMPP软件,可以一键式搭建起开发环境,包括Apache、MySQL、PHP、PERL。在本地服务器上新建数据库和表,并设置相应的属性。最后,给出了创建new表的SQL语句。这个教程适合初学者参考。 ... [详细]
  • 本文介绍了如何在MySQL中将零值替换为先前的非零值的方法,包括使用内联查询和更新查询。同时还提供了选择正确值的方法。 ... [详细]
  • 本文详细介绍了MysqlDump和mysqldump进行全库备份的相关知识,包括备份命令的使用方法、my.cnf配置文件的设置、binlog日志的位置指定、增量恢复的方式以及适用于innodb引擎和myisam引擎的备份方法。对于需要进行数据库备份的用户来说,本文提供了一些有价值的参考内容。 ... [详细]
  • 使用Ubuntu中的Python获取浏览器历史记录原文: ... [详细]
  • 本文由编程笔记小编整理,介绍了PHP中的MySQL函数库及其常用函数,包括mysql_connect、mysql_error、mysql_select_db、mysql_query、mysql_affected_row、mysql_close等。希望对读者有一定的参考价值。 ... [详细]
  • 本文介绍了Oracle数据库中tnsnames.ora文件的作用和配置方法。tnsnames.ora文件在数据库启动过程中会被读取,用于解析LOCAL_LISTENER,并且与侦听无关。文章还提供了配置LOCAL_LISTENER和1522端口的示例,并展示了listener.ora文件的内容。 ... [详细]
  • Spring特性实现接口多类的动态调用详解
    本文详细介绍了如何使用Spring特性实现接口多类的动态调用。通过对Spring IoC容器的基础类BeanFactory和ApplicationContext的介绍,以及getBeansOfType方法的应用,解决了在实际工作中遇到的接口及多个实现类的问题。同时,文章还提到了SPI使用的不便之处,并介绍了借助ApplicationContext实现需求的方法。阅读本文,你将了解到Spring特性的实现原理和实际应用方式。 ... [详细]
  • Java String与StringBuffer的区别及其应用场景
    本文主要介绍了Java中String和StringBuffer的区别,String是不可变的,而StringBuffer是可变的。StringBuffer在进行字符串处理时不生成新的对象,内存使用上要优于String类。因此,在需要频繁对字符串进行修改的情况下,使用StringBuffer更加适合。同时,文章还介绍了String和StringBuffer的应用场景。 ... [详细]
  • Oracle分析函数first_value()和last_value()的用法及原理
    本文介绍了Oracle分析函数first_value()和last_value()的用法和原理,以及在查询销售记录日期和部门中的应用。通过示例和解释,详细说明了first_value()和last_value()的功能和不同之处。同时,对于last_value()的结果出现不一样的情况进行了解释,并提供了理解last_value()默认统计范围的方法。该文对于使用Oracle分析函数的开发人员和数据库管理员具有参考价值。 ... [详细]
  • MyBatis错题分析解析及注意事项
    本文对MyBatis的错题进行了分析和解析,同时介绍了使用MyBatis时需要注意的一些事项,如resultMap的使用、SqlSession和SqlSessionFactory的获取方式、动态SQL中的else元素和when元素的使用、resource属性和url属性的配置方式、typeAliases的使用方法等。同时还指出了在属性名与查询字段名不一致时需要使用resultMap进行结果映射,而不能使用resultType。 ... [详细]
  • 本文详细介绍了在ASP.NET中获取插入记录的ID的几种方法,包括使用SCOPE_IDENTITY()和IDENT_CURRENT()函数,以及通过ExecuteReader方法执行SQL语句获取ID的步骤。同时,还提供了使用这些方法的示例代码和注意事项。对于需要获取表中最后一个插入操作所产生的ID或马上使用刚插入的新记录ID的开发者来说,本文提供了一些有用的技巧和建议。 ... [详细]
  • 本文介绍了一个在线急等问题解决方法,即如何统计数据库中某个字段下的所有数据,并将结果显示在文本框里。作者提到了自己是一个菜鸟,希望能够得到帮助。作者使用的是ACCESS数据库,并且给出了一个例子,希望得到的结果是560。作者还提到自己已经尝试了使用"select sum(字段2) from 表名"的语句,得到的结果是650,但不知道如何得到560。希望能够得到解决方案。 ... [详细]
  • 本文详细介绍了Spring的JdbcTemplate的使用方法,包括执行存储过程、存储函数的call()方法,执行任何SQL语句的execute()方法,单个更新和批量更新的update()和batchUpdate()方法,以及单查和列表查询的query()和queryForXXX()方法。提供了经过测试的API供使用。 ... [详细]
  • 高质量SQL书写的30条建议
    本文提供了30条关于优化SQL的建议,包括避免使用select *,使用具体字段,以及使用limit 1等。这些建议是基于实际开发经验总结出来的,旨在帮助读者优化SQL查询。 ... [详细]
  • 本文介绍了通过mysql命令查看mysql的安装路径的方法,提供了相应的sql语句,并希望对读者有参考价值。 ... [详细]
author-avatar
流浪V海哥
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有