mysql数据库学习――4,完整性约束_MySQL

WBOY
Lepaskan: 2016-06-01 13:32:01
asal
1405 orang telah melayarinya

bitsCN.com

mysql数据库学习——4,完整性约束

 

主键

create table feng(teamno int not null,playerno int not null,pision char(6) not null,primary key(teamno))create table feng(teamno int not null primary key ,playerno int not null,pision char(6) not null,)
Salin selepas log masuk

复合主键

create table feng(teamno int not null,playerno int not null,pision char(6) not null,primary key(teamno,playerno))
Salin selepas log masuk

替代键(候选键)

create table feng(teamno int not null primary key ,playerno int not null,pision char(6) not null,unique(playerno))create table feng(teamno int not null primary key ,playerno int not null,pision char(6) not null,unique(playerno,pision))
Salin selepas log masuk

外键(在innoDB中使用)

外键声明包括三个部分

1,那个列或列组合是外键

2,指定外键参照的表和列

3,参照动作[cascade(级联操作),restrict(拒绝操作),set null(设为空),no action,set default]

如果没有指定参照动作默认是

on update restricton delete  restrictcreate table feng(teamno int not null primary key ,playerno int not null,pision char(6) not null,foreign key(pision)references othertable   (column)on update restrictunique(playerno))check完整性约束create  table players (playerno int not null, sex   char(1) not null,         check (sex in (&#39;m&#39;,&#39;f&#39;)))create  table players (playerno int not null,birth_date  date, sex   char(1) not null,         check (sex in (&#39;m&#39;,&#39;f&#39;))joined smallint not null,             check (year(birth_date)<joined),             check (joined<1880),)create  table players (playerno int not null,birth_date  date, sex   char(1) not null,          check (sex in (select sex from wholetab))
Salin selepas log masuk

 


bitsCN.com
Label berkaitan:
sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan