DB2 创建外键的N多操作选项如何掌握?

数据库
以下的文章主要向大家讲述的是掌握DB2 创建外键时的操作选项的简便方法,以及对其在实际操作中要用到的实际操作代码的描述。

我们今天主要向大家讲述的是教你掌握DB2 创建外键时的操作选项的简便方案,以及对其在实际操作中要用到的相关实际操作代码的描述,以下就是文章的主要内容的详细描述,望大家会对其有更好的了解。

本文介绍了如何快速掌握DB2 创建外键时的选项

1.创建测试表:

  1. drop table student; drop table class; drop table student_class;  

DB2 创建外键时的选项:

1.创建测试表:

  1. drop table student;   
  2. drop table class;   
  3. drop table student_class;   
  4. Create table student(student_id integer not null,student_name varchar(200), 
    CONSTRAINT P_KEY_1 primary key (student_id)) in luzl_32k_tb index in luzl_32k_tb ;   
  5. Create table class(class_id integer not null,class_name varchar(200), CONSTRAINT P_KEY_2 primary key (class_id)) in luzl_32k_tb index in luzl_32k_tb ;   
  6. Create table student_class(student_class_id integer,student_id integer,class_id integer) in luzl_32k_tb index in luzl_32k_tb;   
  7. alter table student_class add constraint if_class foreign key(class_id) references class(class_id) ON DELETE cascade ON UPDATE RESTRICT;   
  8. alter table student_class add constraint if_student foreign key(student_id) references student(student_id) ON DELETE cascade ON UPDATE RESTRICT;   
  9. Insert into student(student_id,student_name) values(1,'luzl');   
  10. Insert into class(class_id,class_name) values(1,'db2');   
  11. Insert into student_class(student_class_id,student_id,class_id) values(1,1,1);  

2.On Delete 的选项有

Restrict/no action/cascade/set null.其中cascade选项指定的话,如果删除父记录,依赖于他的子记录也会自动删除.相当于级联删除.如果指定no action和cascade都会报错,因为还有子记录所以无法删除该记录.set nul允许删除父记录并且l会将子表中与父表关联的字段设置为null.

3.On Update 只有两个选项 no action/restrict.它们在更新和删除时并没有区别:如果与子表关联不允许删除.

4.另外还需要注意一点,父表中的字段必须是主键,才能做为子表的外键。以上的相关内容就是对教你快速掌握DB2 创建外键时的选项的介绍,望你能有所收获。

【编辑推荐】

  1. 对DB2 9.7武器的功能的描述
  2. IBM DB2连接集中器的基本操作原理
  3. DB2 V9.5 新特性有哪些好处?
  4. DB2 batch update注意事项的描述
  5. DB2V8升级到DB2V95数据库的方案分析

 

责任编辑:佚名 来源: 博客园
相关推荐

2010-08-19 09:44:04

DB2创建外键

2010-08-18 09:09:15

DB2创建外键

2010-08-20 08:37:59

DB2创建外键

2011-03-23 10:25:21

DB2数据库创建外键选项

2010-08-10 13:44:51

DB2创建外键

2010-07-29 08:56:53

DB2基本操作指令

2010-08-02 14:34:53

DB2数据移动

2010-09-01 09:27:21

DB2表名

2010-08-04 11:12:09

DB2命令执行

2010-07-27 09:29:40

DB2数据移动

2010-11-02 14:08:29

DB2创建用户

2010-08-16 09:39:03

DB2基础知识DB2c

2010-09-07 15:39:52

DB2创建跨库视图

2010-11-02 11:36:10

DB2索引创建

2010-07-27 11:08:49

DB2数据移动

2010-09-06 15:27:50

DB2

2010-08-16 09:48:28

DB2数据库

2010-11-02 14:53:38

DB2权限

2010-08-20 10:18:32

DB2自动增长主键

2010-11-02 14:45:12

DB2创建表空间
点赞
收藏

51CTO技术栈公众号