真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

創(chuàng)新互聯(lián)建站一直秉承“誠信做人,踏實做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務(wù)為基礎(chǔ),以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個客戶多一個朋友!為您提供網(wǎng)站設(shè)計制作、成都網(wǎng)站制作、成都網(wǎng)頁設(shè)計、重慶小程序開發(fā)公司、成都網(wǎng)站開發(fā)、成都網(wǎng)站制作、成都軟件開發(fā)、app開發(fā)定制是成都本地專業(yè)的網(wǎng)站建設(shè)和網(wǎng)站設(shè)計公司,等你一起來見證!

一、介紹

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

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

主要分為:

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

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

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

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

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

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

UNSIGNED #無符號

ZEROFILL #使用0填充

說明:

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

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

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

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

#必須為正值(無符號) 不允許為空 默認(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)建列時可以指定默認(rèn)值,當(dāng)插入數(shù)據(jù)時如果未主動設(shè)置,則自動添加默認(rèn)值

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

注意:

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

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

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

三、UNIQUE

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

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

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): 同時插入兩個IT部門也是可以的,但這是不合理的,所以我們要設(shè)置name字段為unique 解決這種不合理的現(xiàn)象。

接下來,使用約束條件unique,來對公司部門的字段進(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的一個表中只有唯一的一個主鍵,不能有多列主鍵,但可以有復(fù)合主鍵

一個表中可以:

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

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

存儲引擎默認(rèn)是(innodb):對于innodb存儲引擎來說,一張表必須有一個主鍵。

單列主鍵:

# 創(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

約束:約束的字段為自動增長,約束的字段必須同時被key約束

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

1、不指定id,則自動增長

2、也可以指定id

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

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)
# 步長auto_increment_increment,默認(rèn)為1
# 起始的偏移量auto_increment_offset, 默認(rèn)是1

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

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

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

#強調(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的值會被忽略 

# 設(shè)置完起始偏移量和步長之后,再次執(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)

#因為之前有一條記錄id=1
mysql> select * from student;
+----+---------+------+
| id | name    | sex  |
+----+---------+------+
|  1 | xiaobai | male |
+----+---------+------+
row in set (0.00 sec)
# 下次插入的時候,從起始位置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個部門,但是有1個億的員工,那意味著部門這個字段需要重復(fù)存儲,部門名字越長,越浪費。

這個時候,

解決方法:

我們完全可以定義一個部門表

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

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

#1.創(chuàng)建表時先創(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.插入記錄時,先往被關(guān)聯(lián)表中插入記錄,再往關(guān)聯(lián)表中插入記錄
insert into dep values
(1,'IT','IT技術(shù)有限部門'),
(2,'銷售部','銷售部門'),
(3,'財務(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.刪除表
#按道理來說,刪除了部門表中的某個部門,員工表的有關(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)前部門就沒有任何問題
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)

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

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

接下來:
重復(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 #同步更新
);

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

#再去刪被關(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è)知識信息 ,可以持續(xù)關(guān)注我們的行業(yè)資訊欄目的。


網(wǎng)站名稱:如何保護(hù)mysql數(shù)據(jù)完整性詳解
瀏覽地址:http://weahome.cn/article/ggiieh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部