mysql常見約束

2021-10-13 21:33:09 字數 3973 閱讀 9155

2.2、修改表時

三、刪除外來鍵

總結語法:欄位名和型別後面追加 約束型別即可。

支援範圍:預設、非空、主鍵、唯一

use students;

drop

table stuinfo;

create

table major(

id int

primary

key,

majorname varchar(20

));create

table stuinfo(

id int

primary

key,

#主鍵 stuname varchar(20

)not

null

unique

,#非空

gender char(1

)check

(gender=

'男'or gender =

'女')

,#檢查

seat int

unique

,#唯一

age int

default18,

#預設約束

majorid int

references major(id)

#外來鍵)

;#檢視stuinfo中的所有索引,包括主鍵、外來鍵、唯一

show

index

from stuinfo;

語法:在各個欄位的最下面 constraint 約束名 約束型別(欄位名)

drop

table

ifexists stuinfo;

create

table stuinfo(

id int

, stuname varchar(20

),gender char(1

),seat int

, age int

, majorid int

,constraint pk primary

key(id)

,#主鍵

constraint uq unique

(seat)

,#唯一鍵

constraint ck check

(gender =

'男'or gender =

'女')

,#檢查

constraint fk_stuinfo_major foreign

key(majorid)

references major(id)

#外來鍵)

;show

index

from stuinfo;

#通用的寫法:★

create

table

ifnot

exists stuinfo(

id int

primary

key,

stuname varchar(20

),*** char(1

),age int

default18,

seat int

unique

, majorid int

,constraint fk_stuinfo_major foreign

key(majorid)

references major(id)

);

語法:alter table 表名 modify column 欄位名 字段型別 新約束;

drop

table

ifexists stuinfo;

create

table stuinfo(

id int

, stuname varchar(20

),gender char(1

),seat int

, age int

, majorid int

)desc stuinfo;

#1.新增非空約束

alter

table stuinfo modify

column stuname varchar(20

)not

null

;#2.新增預設約束

alter

table stuinfo modify

column age int

default18;

#3.新增主鍵

alter

table stuinfo modify

column id int

primary

key;

#4.新增唯一

alter

table stuinfo modify

column seat int

unique

;#5.新增外來鍵

alter

table stuinfo add

constraint fk_stuinfo_major foreign

key(majorid)

references major(id)

;

語法:alter table 表名 add 約束名 約束型別(欄位名) ;

drop

table

ifexists stuinfo;

create

table stuinfo(

id int

, stuname varchar(20

),gender char(1

),seat int

, age int

, majorid int

)desc stuinfo;

#1.新增唯一

alter

table stuinfo add

unique

(seat)

;#2.新增主鍵

alter

table stuinfo add

primary

key(id)

;

#1.刪除非空約束

alter

table stuinfo modify

column stuname varchar(20

)null

;#2.刪除預設約束

alter

table stuinfo modify

column age int

;#3.刪除主鍵

alter

table stuinfo drop

primary

key;

#4.刪除唯一

alter

table stuinfo drop

index seat;

#5.刪除外來鍵

alter

table stuinfo drop

foreign

key fk_stuinfo_major;

新增約束的時機:

1.建立表時

2.修改表時

約束的新增分類:

列級約束:

六大約束語法上都支援,但外來鍵約束沒有效果

表級約束:

除了非空、預設,其他的都支援

主鍵和唯一的大對比:

保證唯一性  是否允許為空    乙個表中可以有多少個   是否允許組合

主鍵 √ × 至多有1個 √,但不推薦

唯一 √ √ 可以有多個 √,但不推薦

外來鍵:

1、要求在從表設定外來鍵關係

2、從表的外來鍵列的型別和主表的關聯列的型別要求一致或相容,名稱無要求

3、主表的關聯列必須是乙個key(一般是主鍵或唯一)

4、插入資料時,先插入主表,再插入從表

刪除資料時,先刪除從表,再刪除主表

MySQL常見約束

1 含義 一種限制,用於限制表中的資料,為了保證表中的資料的準確和可靠性 2 分類 六大約束 not null 非空,用於保證該字段的值不能為空 比如姓名 學號等 default 預設,用於保證該字段有預設值 比如性別 primary key 主鍵,用於保證該字段的值具有唯一性,並且非空 比如學號 ...

mysql 字段常見約束

含義 一種限制,用於限制表中的資料,為了保證表中資料的準確性和可靠性 分類 六大約束 not null 非空,用於保證該字段的值不能為空 比如使用者名字段 學號字段等必填項 default 預設值,用於保證該字段有預設值 比如頭像等非必填項,但又需要有個值的字段 primary key 主鍵,用於保...

常見約束介紹 MySQL

常見約束 含義 一種限制,用於限制表中的資料,為了保證表中的資料的準確和可靠性 分類 六大約束 not null 非空 用於保證該字段的值不能為空 比如姓名 學號等 default 預設,用於保證該字段有預設值 比如性別 primary key 主鍵,用於保證該字段的值具有唯一性,並且非空 比如學號...