91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何保護mysql數據完整性詳解

發布時間:2020-04-30 11:40:10 來源:億速云 閱讀:339 作者:三月 欄目:MySQL數據庫

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

一、介紹

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

作用:用于保證數據的完整性和一致性

主要分為:

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

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

NOT NULL    #標識該字段不能為空

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

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

DEFAULT    #為該字段設置默認值

UNSIGNED #無符號

ZEROFILL #使用0填充

說明:

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

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

如何保護mysql數據完整性詳解

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

#必須為正值(無符號) 不允許為空 默認是20age int unsigned NOT NULL default 20

# 3. 是否是key

主鍵 primary key

外鍵 foreign key

索引 (index,unique...)

二、NOT NULL 和DEFAULT

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

默認值,創建列時可以指定默認值,當插入數據時如果未主動設置,則自動添加默認值

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

注意:

1、默認值可以為空

2、設置not null,插入值時不能為空

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

三、UNIQUE

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

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

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

接下來,使用約束條件unique,來對公司部門的字段進行設置。

#第一種創建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');
#第二種創建unique的方式create table department(
    id int,
    name char(10) ,    unique(id),    unique(name)
);
insert into department values(1,'it'),(2,'sale');

聯合唯一:

# 創建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)
#聯合唯一,只要兩列記錄,有一列不同,既符合聯合唯一的約束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的一個表中只有唯一的一個主鍵,不能有多列主鍵,但可以有復合主鍵

一個表中可以:

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

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

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

單列主鍵:

# 創建t14表,為id字段設置主鍵,唯一的不同的記錄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的化學反應,相當于給id設置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)

復合主鍵:

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刪除后,再插入值,該字段仍按照刪除前的位置繼續增長

auto_increment_incrementauto_increment_offset的區別

查看可用的 開頭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,默認為1
# 起始的偏移量auto_increment_offset, 默認是1

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

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

 # 設置起始偏移量
 set global  auto_increment_offset=3;

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

# 設置完起始偏移量和步長之后,再次執行show variables like'auto_inc%';
發現跟之前一樣,必須先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

清空表區分deletetruncate的區別:

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

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

六、FOREIGN KEY

公司有3個部門,但是有1個億的員工,那意味著部門這個字段需要重復存儲,部門名字越長,越浪費。

這個時候,

解決方法:

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

然后讓員工信息表關聯該表,如何關聯,即foreign key

創建兩張表操作:

#1.創建表時先創建被關聯表,再創建關聯表
# 先創建被關聯表(dep表)
create table dep(
    id int primary key,
    name varchar(20) not null,
    descripe varchar(20) not null
);
#再創建關聯表(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.插入記錄時,先往被關聯表中插入記錄,再往關聯表中插入記錄
insert into dep values
(1,'IT','IT技術有限部門'),
(2,'銷售部','銷售部門'),
(3,'財務部','花錢太多部門');
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.刪除表
#按道理來說,刪除了部門表中的某個部門,員工表的有關聯的記錄相繼刪除。
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`))
#但是先刪除員工表的記錄之后,再刪除當前部門就沒有任何問題
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技術有限部門       |
|  2 | 銷售部    | 銷售部門             |
+----+-----------+----------------------+
rows in set (0.00 sec)

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

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

接下來:
重復上面的操作建表
注意:在關聯表中加入
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 #同步更新
);

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

#再去刪被關聯表(dep)的記錄,關聯表(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技術有限部門       |
|  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)

#再去更改被關聯表(dep)的記錄,關聯表(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技術有限部門       |
| 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)

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

松阳县| 义马市| 乐至县| 班戈县| 南投市| 台湾省| 哈巴河县| 星座| 酒泉市| 浠水县| 香河县| 临高县| 池州市| 蒙自县| 响水县| 靖远县| 资阳市| 麻阳| 荥阳市| 江口县| 连江县| 西贡区| 溧阳市| 遂溪县| 连城县| 丰原市| 扶风县| 锡林郭勒盟| 原阳县| 芜湖县| 重庆市| 甘孜县| 九龙坡区| 罗平县| 天水市| 沧州市| 友谊县| 繁峙县| 泸西县| 宁蒗| 吉木乃县|