溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何保護(hù)mysql數(shù)據(jù)完整性詳解

發(fā)布時(shí)間:2020-04-30 11:40:10 來(lái)源:億速云 閱讀:338 作者:三月 欄目:MySQL數(shù)據(jù)庫(kù)

本文主要給大家介紹如何保護(hù)mysql數(shù)據(jù)完整性詳解,文章內(nèi)容都是筆者用心摘選和編輯的,如何保護(hù)mysql數(shù)據(jù)完整性詳解具有一定的針對(duì)性,對(duì)大家的參考意義還是比較大的,下面跟筆者一起了解下主題內(nèi)容吧。

一、介紹

約束條件與數(shù)據(jù)類型的寬度一樣,都是可選參數(shù)

作用:用于保證數(shù)據(jù)的完整性和一致性

主要分為:

PRIMARY KEY (PK)    #標(biāo)識(shí)該字段為該表的主鍵,可以唯一的標(biāo)識(shí)記錄

FOREIGN KEY (FK)    #標(biāo)識(shí)該字段為該表的外鍵

NOT NULL    #標(biāo)識(shí)該字段不能為空

UNIQUE KEY (UK)    #標(biāo)識(shí)該字段的值是唯一的

AUTO_INCREMENT    #標(biāo)識(shí)該字段的值自動(dòng)增長(zhǎng)(整數(shù)類型,而且為主鍵)

DEFAULT    #為該字段設(shè)置默認(rèn)值

UNSIGNED #無(wú)符號(hào)

ZEROFILL #使用0填充

說(shuō)明:

#1. 是否允許為空,默認(rèn)NULL,可設(shè)置NOT NULL,字段不允許為空,必須賦值

#2. 字段是否有默認(rèn)值,缺省的默認(rèn)值是NULL,如果插入記錄時(shí)不給字段賦值,此字段使用默認(rèn)值

如何保護(hù)mysql數(shù)據(jù)完整性詳解

sex enum('male','female') not null default 'male'

#必須為正值(無(wú)符號(hào)) 不允許為空 默認(rèn)是20age int unsigned NOT NULL default 20

# 3. 是否是key

主鍵 primary key

外鍵 foreign key

索引 (index,unique...)

二、NOT NULL 和DEFAULT

是否可空,null表示空,非字符串
not null - 不可空
null - 可空

默認(rèn)值,創(chuàng)建列時(shí)可以指定默認(rèn)值,當(dāng)插入數(shù)據(jù)時(shí)如果未主動(dòng)設(shè)置,則自動(dòng)添加默認(rèn)值

create table tb1(
    nid int not null defalut 2,    
    num int not null);

注意:

1、默認(rèn)值可以為空

2、設(shè)置not null,插入值時(shí)不能為空

3、設(shè)置id字段有默認(rèn)值后,則無(wú)論id字段是null還是not null,都可以插入空,插入空默認(rèn)填入default指定的默認(rèn)值

三、UNIQUE

中文翻譯:不同的。在mysql中稱為單列唯一

舉例說(shuō)明:創(chuàng)建公司部門表(每個(gè)公司都有唯一的一個(gè)部門)

mysql> create table department(
    -> id int,
    -> name char(10)
    -> );
Query OK, 0 rows affected (0.01 sec)

mysql> insert into department values(1,'IT'),(2,'IT');
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0mysql> select * from department;
+------+------+| id   | name |
+------+------+|    1 | IT   |
|    2 | IT   |
+------+------+2 rows in set (0.00 sec)
# 發(fā)現(xiàn): 同時(shí)插入兩個(gè)IT部門也是可以的,但這是不合理的,所以我們要設(shè)置name字段為unique 解決這種不合理的現(xiàn)象。

接下來(lái),使用約束條件unique,來(lái)對(duì)公司部門的字段進(jìn)行設(shè)置。

#第一種創(chuàng)建unique的方式#例子1:create table department(
    id int,
    name char(10) unique
);
mysql> insert into department values(1,'it'),(2,'it');
ERROR 1062 (23000): Duplicate entry 'it' for key 'name'
#例子2:create table department(
    id int unique,
    name char(10) unique
);
insert into department values(1,'it'),(2,'sale');
#第二種創(chuàng)建unique的方式create table department(
    id int,
    name char(10) ,    unique(id),    unique(name)
);
insert into department values(1,'it'),(2,'sale');

聯(lián)合唯一:

# 創(chuàng)建services表mysql> create table services(
        id int,
        ip char(15),
        port int,
        unique(id),
        unique(ip,port)
       );
Query OK, 0 rows affected (0.05 sec)

mysql> desc services;
+-------+----------+------+-----+---------+-------+
| Field | Type      | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| id        | int(11)   | YES   | UNI  | NULL       |             
| ip        | char(15) | YES   | MUL  | NULL       |          
| port    | int(11) | YES   |          | NULL       |             
|+-------+----------+------+-----+---------+-------+|
3 rows in set (0.01 sec)
#聯(lián)合唯一,只要兩列記錄,有一列不同,既符合聯(lián)合唯一的約束mysql> insert into services values
       (1,'192,168,11,23',80),
       (2,'192,168,11,23',81),
       (3,'192,168,11,25',80);
Query OK, 3 rows affected (0.01 sec)
Records: 3  Duplicates: 0  Warnings: 0
mysql> select * from services;
+------+---------------+------+
| id   | ip            | port |
+------+---------------+------+
|    1 | 192,168,11,23 |   80 |
|    2 | 192,168,11,23 |   81 |
|    3 | 192,168,11,25 |   80 |
+------+---------------+------+
3 rows in set (0.00 sec)

mysql> insert into services values (4,'192,168,11,23',80);
ERROR 1062 (23000): Duplicate entry '192,168,11,23-80' for key 'ip'

四、PRIMARY KEY

在MySQL的一個(gè)表中只有唯一的一個(gè)主鍵,不能有多列主鍵,但可以有復(fù)合主鍵

一個(gè)表中可以:

單列做主鍵
多列做主鍵(復(fù)合主鍵)

約束:等價(jià)于 not null unique,字段的值不為空且唯一

存儲(chǔ)引擎默認(rèn)是(innodb):對(duì)于innodb存儲(chǔ)引擎來(lái)說(shuō),一張表必須有一個(gè)主鍵。

單列主鍵:

# 創(chuàng)建t14表,為id字段設(shè)置主鍵,唯一的不同的記錄create table t14(
    id int primary key,
    name char(16)
);
insert into t14 values(1,'xiaoma'),(2,'xiaohong');

mysql> insert into t14 values(2,'wxxx');
ERROR 1062 (23000): Duplicate entry '6' for key 'PRIMARY'
#   not null + unique的化學(xué)反應(yīng),相當(dāng)于給id設(shè)置primary key
create table t15(
    id int not null unique,
    name char(16)
);
mysql> create table t15(
    -> id int not null unique,
    -> name char(16)
    -> );
Query OK, 0 rows affected (0.01 sec)

mysql> desc t15;
+-------+----------+------+-----+---------+-------+
| Field | Type         | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| id        | int(11)  | NO     | PRI | NULL       |             |
| name   | char(16) | YES  |         | NULL       |             |
+-------+----------+------+-----+---------+-------+
2 rows in set (0.02 sec)

復(fù)合主鍵:

create table t16(
    ip char(15),
    port int,
    primary key(ip,port)
);
insert into t16 values('1.1.1.2',80),('1.1.1.2',81);

五、AUTO_INCREMENT

約束:約束的字段為自動(dòng)增長(zhǎng),約束的字段必須同時(shí)被key約束

create table student(
id int primary key auto_increment,
name varchar(20),
sex enum('male','female') default 'male'
);

1、不指定id,則自動(dòng)增長(zhǎng)

2、也可以指定id

3、對(duì)于自增的字段,在用delete刪除后,再插入值,該字段仍按照刪除前的位置繼續(xù)增長(zhǎng)

auto_increment_incrementauto_increment_offset的區(qū)別

查看可用的 開頭auto_inc的詞
mysql> show variables like 'auto_inc%';
+--------------------------+-------+
| Variable_name            | Value |
+--------------------------+-------+
| auto_increment_increment | 1     |
| auto_increment_offset    | 1     |
+--------------------------+-------+
rows in set (0.02 sec)
# 步長(zhǎng)auto_increment_increment,默認(rèn)為1
# 起始的偏移量auto_increment_offset, 默認(rèn)是1

 # 設(shè)置步長(zhǎng) 為會(huì)話設(shè)置,只在本次連接中有效
 set session auto_increment_increment=5;

 #全局設(shè)置步長(zhǎng) 都有效。
 set global auto_increment_increment=5;

 # 設(shè)置起始偏移量
 set global  auto_increment_offset=3;

#強(qiáng)調(diào):If the value of auto_increment_offset is greater than that of auto_increment_increment, 
the value of auto_increment_offset is ignored. 
翻譯:如果auto_increment_offset的值大于auto_increment_increment的值,則auto_increment_offset的值會(huì)被忽略 

# 設(shè)置完起始偏移量和步長(zhǎng)之后,再次執(zhí)行show variables like'auto_inc%';
發(fā)現(xiàn)跟之前一樣,必須先exit,再登錄才有效。

mysql> show variables like'auto_inc%';
+--------------------------+-------+
| Variable_name            | Value |
+--------------------------+-------+
| auto_increment_increment | 5     |
| auto_increment_offset    | 3     |
+--------------------------+-------+
rows in set (0.00 sec)

#因?yàn)橹坝幸粭l記錄id=1
mysql> select * from student;
+----+---------+------+
| id | name    | sex  |
+----+---------+------+
|  1 | xiaobai | male |
+----+---------+------+
row in set (0.00 sec)
# 下次插入的時(shí)候,從起始位置3開始,每次插入記錄id+5
mysql> insert into student(name) values('ma1'),('ma2'),('ma3');
Query OK, 3 rows affected (0.00 sec)
Records: 3  Duplicates: 0  Warnings: 0
mysql> select * from student;
+----+---------+------+
| id | name    | sex  |
+----+---------+------+
|  1 | xiaobai | male |
|  3 | ma1     | male |
|  8 | ma2     | male |
| 13 | ma3     | male |
+----+---------+------+
auto_increment_increment和 auto_increment_offset

清空表區(qū)分deletetruncate的區(qū)別:

delete from t1; #如果有自增id,新增的數(shù)據(jù),仍然是以刪除前的最后一樣作為起始。

truncate table t1;數(shù)據(jù)量大,刪除速度比上一條快,且直接從零開始。

六、FOREIGN KEY

公司有3個(gè)部門,但是有1個(gè)億的員工,那意味著部門這個(gè)字段需要重復(fù)存儲(chǔ),部門名字越長(zhǎng),越浪費(fèi)。

這個(gè)時(shí)候,

解決方法:

我們完全可以定義一個(gè)部門表

然后讓員工信息表關(guān)聯(lián)該表,如何關(guān)聯(lián),即foreign key

創(chuàng)建兩張表操作:

#1.創(chuàng)建表時(shí)先創(chuàng)建被關(guān)聯(lián)表,再創(chuàng)建關(guān)聯(lián)表
# 先創(chuàng)建被關(guān)聯(lián)表(dep表)
create table dep(
    id int primary key,
    name varchar(20) not null,
    descripe varchar(20) not null
);
#再創(chuàng)建關(guān)聯(lián)表(emp表)
create table emp(
    id int primary key,
    name varchar(20) not null,
    age int not null,
    dep_id int,
    constraint fk_dep foreign key(dep_id) references dep(id) 
);
#2.插入記錄時(shí),先往被關(guān)聯(lián)表中插入記錄,再往關(guān)聯(lián)表中插入記錄
insert into dep values
(1,'IT','IT技術(shù)有限部門'),
(2,'銷售部','銷售部門'),
(3,'財(cái)務(wù)部','花錢太多部門');
insert into emp values
(1,'zhangsan',18,1),
(2,'lisi',19,1),
(3,'djb',20,2),
(4,'dogfa',40,3),
(5,'oldniu',18,2);
3.刪除表
#按道理來(lái)說(shuō),刪除了部門表中的某個(gè)部門,員工表的有關(guān)聯(lián)的記錄相繼刪除。
mysql> delete from dep where id=3;
ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails 
(`db5`.`emp`, CONSTRAINT `fk_name` FOREIGN KEY (`dep_id`) REFERENCES `dep` (`id`))
#但是先刪除員工表的記錄之后,再刪除當(dāng)前部門就沒(méi)有任何問(wèn)題
mysql> delete from emp where dep =3;
Query OK, 1 row affected (0.00 sec)
mysql> select * from emp;
+----+----------+-----+--------+
| id | name     | age | dep_id |
+----+----------+-----+--------+
|  1 | zhangsan |  18 |      1 |
|  2 | lisi     |  18 |      1 |
|  3 | djb      |  20 |      2 |
|  5 | oldniu   |  18 |      2 |
+----+----------+-----+--------+
rows in set (0.00 sec)
mysql> delete from dep where id=3;
Query OK, 1 row affected (0.00 sec)

mysql> select * from dep;
+----+-----------+----------------------+
| id | name      | descripe             |
+----+-----------+----------------------+
|  1 | IT        | IT技術(shù)有限部門       |
|  2 | 銷售部    | 銷售部門             |
+----+-----------+----------------------+
rows in set (0.00 sec)

上面的刪除表記錄的操作比較繁瑣,按道理講,裁掉一個(gè)部門,該部門的員工也會(huì)被裁掉。其實(shí)呢,在建表的時(shí)候還有個(gè)很重要的內(nèi)容,叫同步刪除,同步更新

接下來(lái)將剛建好的兩張表全部刪除,先刪除關(guān)聯(lián)表(emp),再刪除被關(guān)聯(lián)表(dep)

接下來(lái):
重復(fù)上面的操作建表
注意:在關(guān)聯(lián)表中加入
on delete cascade #同步刪除
on update cascade #同步更新

修改emp表:

create table emp(    
    id int primary key,    
    name varchar(20) not null,
    age int not null,
    dep_id int,
    constraint fk_dep foreign key(dep_id) references dep(id) 
    on delete cascade #同步刪除    
    on update cascade #同步更新
);

接下來(lái)的操作,就符合我們正常的生活中的情況了。

#再去刪被關(guān)聯(lián)表(dep)的記錄,關(guān)聯(lián)表(emp)中的記錄也跟著刪除
mysql> delete from dep where id=3;
Query OK, 1 row affected (0.00 sec)

mysql> select * from dep;
+----+-----------+----------------------+
| id | name      | descripe             |
+----+-----------+----------------------+
|  1 | IT        | IT技術(shù)有限部門       |
|  2 | 銷售部    | 銷售部門             |
+----+-----------+----------------------+
rows in set (0.00 sec)
mysql> select * from emp;
+----+----------+-----+--------+
| id | name     | age | dep_id |
+----+----------+-----+--------+
|  1 | zhangsan |  18 |      1 |
|  2 | lisi     |  19 |      1 |
|  3 | djb      |  20 |      2 |
|  5 | oldniu   |  18 |      2 |
+----+----------+-----+--------+
rows in set (0.00 sec)

#再去更改被關(guān)聯(lián)表(dep)的記錄,關(guān)聯(lián)表(emp)中的記錄也跟著更改

 mysql> update dep set id=222 where id=2; 
Query OK, 1 row affected (0.02 sec)
Rows matched: 1  Changed: 1  Warnings: 0
# 趕緊去查看一下兩張表是否都被刪除了,是否都被更改了
mysql> select * from dep;
+-----+-----------+----------------------+
| id  | name      | descripe             |
+-----+-----------+----------------------+
|   1 | IT        | IT技術(shù)有限部門       |
| 222 | 銷售部    | 銷售部門             |
+-----+-----------+----------------------+
rows in set (0.00 sec)
mysql> select * from emp;
+----+----------+-----+--------+
| id | name     | age | dep_id |
+----+----------+-----+--------+
|  1 | zhangsan |  18 |      1 |
|  2 | lisi     |  19 |      1 |
|  3 | djb      |  20 |    222 |
|  5 | oldniu   |  18 |    222 |
+----+----------+-----+--------+
rows in set (0.00 sec)

看完以上關(guān)于如何保護(hù)mysql數(shù)據(jù)完整性詳解,很多讀者朋友肯定多少有一定的了解,如需獲取更多的行業(yè)知識(shí)信息 ,可以持續(xù)關(guān)注我們的行業(yè)資訊欄目的。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI