mysql级联操作(实例)


MySQL支持外键的存储引擎只有InnoDB,在创建外键的时候,要求父表必须有对应的索引,子表在创建外键的时候也会自动创建对应的索引。在创建索引的时候,可以指定在删除、更新父表时,对子表进行的相应操作,包括RESTRICT、NOACTION、SET NULL和CASCADE。其中RESTRICT和NO ACTION相同,是指在子表有关联记录的情况下父表不能更新;CASCADE表示父表在更新或者删除时,更新或者删除子表对应记录;SET
NULL则是表示父表在更新或者删除的时候,子表的对应字段被SET NULL。下面以一个新闻表说明,该新闻数据库的结构如下:

create database yynews;

use yynews;

#新闻类别表

create table categories(

catId int AUTO_INCREMENT primary key,

catName varchar(40) not null unique

)charset utf8;

#新闻表:

create table news(

newsId int AUTO_INCREMENT primary key,

title varchar(100) not null unique,

content text not null,

createTime timestamp not null,

catId int

)charset utf8;

#添加外键的引用

alter table news add constraint foreign key(catid) references categories(catid);

#评论表:

create table comments(

commId int AUTO_INCREMENT primary key,

content text not null,

createTime timestamp not null,

newsId int not null,

userIP char(15) not null

)charset utf8;

#添加外键的引用

alter table comments add constraint foreign key(newsid) references news(newsid);

#插入测试数据

insert into categories(catname) values("娱乐新闻");

insert into categories(catname) values("国际新闻");

insert into news(title,content,createTime,catId) values(‘test1‘,‘test1‘,now(),1);

insert into news(title,content,createTime,catId) values(‘test2‘,‘test2‘,now(),2);

insert into news(title,content,createTime,catId) values(‘test3‘,‘test3‘,now(),1);

insert into comments(content,createTime,newsId,userIP) values(‘you‘,now(),1,‘127.0.0.1‘);

insert into comments(content,createTime,newsId,userIP) values(‘you‘,now(),2,‘127.0.0.1‘);

insert into comments(content,createTime,newsId,userIP) values(‘you‘,now(),3,‘127.0.0.1‘);

insert into comments(content,createTime,newsId,userIP) values(‘you‘,now(),1,‘127.0.0.1‘);

如下:

mysql> select * from categories;

+-------+--------------+

| catId | catName      |

+-------+--------------+

|     2 | 国际新闻     |

|     1 | 娱乐新闻     |

+-------+--------------+

2 rows in set (0.00 sec)

mysql> select * from news;

+--------+-------+---------+---------------------+-------+

| newsId | title | content | createTime          | catId |

+--------+-------+---------+---------------------+-------+

|      1 | test1 | test1   | 2015-05-19 15:22:53 |     1 |

|      2 | test2 | test2   | 2015-05-19 15:22:53 |     2 |

|      3 | test3 | test3   | 2015-05-19 15:22:53 |     1 |

+--------+-------+---------+---------------------+-------+

3 rows in set (0.00 sec)

mysql> select * from comments;

+--------+---------+---------------------+--------+-----------+

| commId | content | createTime          | newsId | userIP    |

+--------+---------+---------------------+--------+-----------+

|      1 | you     | 2015-05-19 15:22:53 |      1 | 127.0.0.1 |

|      2 | you     | 2015-05-19 15:22:53 |      2 | 127.0.0.1 |

|      3 | you     | 2015-05-19 15:22:53 |      3 | 127.0.0.1 |

|      4 | you     | 2015-05-19 15:22:54 |      1 | 127.0.0.1 |

+--------+---------+---------------------+--------+-----------+

4 rows in set (0.00 sec)

在还没有添加任何的级联操作的时,删除有关联的数据会报错。

mysql> delete from categories where catid=1;

ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (`yynews`.

`comments`, CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`newsId`) REFERENCES `news` (`newsId`))

数据库报错告诉你有个外键阻止了你的操作。所以我们可以添加级联操作。也可以再创建数据库的时候就指定级联操作

如下:

#级联操作

alter table news add constraint foreign key(catid) references categories(catid) on delete cascade

on update cascade;

alter table comments add constraint foreign key(newsid) references news(newsid) on delete cascade

on update cascade;

#上面这句的这两个语句就是在添加外键的时候为该表和表之间添加级联操作,即,数据表在删除或更新数据表时,相

关连的表也会同时更新或删除。

例如:

mysql> delete from categories where catid=1;

Query OK, 1 row affected (0.03 sec)

我们删除了类别catid为1的数据即:娱乐新闻,那么有关娱乐新闻的news中的数据double将会被删除,新闻被删除的同时,新闻下的评论也会被同时删除。

如下所示:

mysql> select * from news;

+--------+-------+---------+---------------------+-------+

| newsId | title | content | createTime          | catId |

+--------+-------+---------+---------------------+-------+

|      2 | test2 | test2   | 2015-05-19 15:17:03 |     2 |

+--------+-------+---------+---------------------+-------+

1 row in set (0.00 sec)

mysql> select * from comments;

+--------+---------+---------------------+--------+-----------+

| commId | content | createTime          | newsId | userIP    |

+--------+---------+---------------------+--------+-----------+

|      2 | you     | 2015-05-19 15:17:03 |      2 | 127.0.0.1 |

+--------+---------+---------------------+--------+-----------+

1 row in set (0.00 sec)

				
时间: 2024-10-24 14:17:15

mysql级联操作(实例)的相关文章

Mybatis、JDBC、Habernate、Mybatis+Spring的Mysql数据库操作实例

1.数据库操作实例: public static void JDBCTest() throws Exception { Connection conn = null; String url = "jdbc:mysql://localhost:3306/mysql_learn?" + "user=root&password=123qwe&useUnicode=true&characterEncoding=utf8"; String select

MySql级联操作

转自:http://blog.csdn.net/codeforme/article/details/5539454 外键约束对子表的含义:       如果在父表中找不到候选键,则不允许在子表上进行insert/update 外键约束对父表的含义:        在父表上进行update/delete以更新或删除在子表中有一条或多条对应匹配行的候选键时,父表的行为取决于:在定义子表的外键时指定的on update/on delete子句, InnoDB支持5种方式, 分列如下   . casca

实体外键约束、级联操作

[实体关系]1.一对多:在多的表,增加一个字段,用于只想该实体所悟的另外的实体的标识.2.多对多:利用一个中间表,表示实体之间的对应关系.(中间表和实体表是一对多关系) [外键约束]foreign key (class_id) references tb_class (class_id); drop table if exists tb_class; create table tb_class( class_id int primary key auto_increment, class_nam

spring-mybatis-data-common程序级分库操作实例

spring-mybatis-data-common-2.0新增分表机制,在1.0基础上做了部分调整. 基于机架展示分库应用数据库分表实力创建 create table tb_example_1( id bigint primary key auto_increment , eId bigint, exampleName varchar(40), exampleTitle varchar(200), exampleDate datetime )ENGINE=MyISAM DEFAULT CHAR

mysql级联更新的两种方式:触发器更新和外键

1.mysql级联更新有两种方式:触发器更新和外键更新. 2.触发器更新和外键更新的目的都是为了保证数据完整性. 我们通常有这样的需求:删除表Table 1中记录,需要同时删除其它表中与Table 1有关的若干记录. 举个例子: 现有2个实体- 麻将机 学生.课程,1种联系- 成绩 分别创建 学生表 students, 课程表course,成绩表score --创建 学生表 students CREATE TABLE IF NOT EXISTS `students` ( `id` int(11)

Python进行MySQL数据库操作

最近开始玩Python,慢慢开始喜欢上它了,以前都是用shell来实现一些自动化或者监控的操作,现在用Python来实现,感觉更棒,Python是一门很强大的面向对象语言,所以作为一个运维DBA或者运维来说,都应该学会用Python来提高工作效率.下面简单的介绍一下Python DB API MySQLdb 使用Python DB API访问数据库的流程图: 在Centos下安装MySQLdb模板(为了方便演显,我用yum安装,也是最快最省事的安装): yum install MySQL-pyt

Mysql数据库操作常用命令

转自微信公众号“MySQL数据库”:http://mp.weixin.qq.com/s?__biz=MzIyNjIwMzg4Ng==&mid=2655293044&idx=1&sn=e312934e5115105fdbe5da12af150276&scene=0#wechat_redirect [全了]Mysql数据库操作常用命令 2016-07-21 MySQL数据库 1.MySQL常用命令 create database name; 创建数据库 use database

mysql数据库多实例部署

本文系统:rhel5.8 ip : 192.168.100.150 数据库版本:mysql-5.6.15 1.创建部署mysql服务账号: [[email protected] ~]# useradd -d /opt/mysql mysql [[email protected] ~]# echo "mysql" |passwd --stdin mysql Changing password for user mysql. passwd: all authentication token

MySQL循环语句实例教程 mysql while循环测试

在mysql数据库中操作同样有循环语句操作,标准的循环方式: while 循环 . loop 循环和repeat循环.还有一种非标准的循环: goto. 鉴于goto 语句的跳跃性会造成使用的的思维混乱,所以不建议使用. 这几个循环语句的格式如下:WHILE……DO……END WHILEREPEAT……UNTIL END REPEATLOOP……END LOOPGOTO.目前我只测试了 while 循环:delimiter $$ // 定义结束符为 $$ drop procedure if ex