給表新增鍵的約束
--增加一列
alter table teacher add age int null
alter table users add age int null
--更改列型別
alter table teacher alter column age varchar(3)
alter table users alter column age varchar(3)
--刪除一列
alter table teacher drop column age
alter table users drop column age
--為teacher表新增主鍵約束
alter table teacher add constraint t_pk primary key(id)
--為teacher表的name新增唯一約束
alter table teacher add constraint t_un unique(name)
--為teacher表的***新增預設約束
alter table teacher add constraint t_de default('
男') for ***
insert into teacher(id,name) values(101,'aa')
--為teacher表的age新增檢查約束
alter table teacher add constraint t_ch check(age>=15 and age<=40)
insert into teacher(id,name,age) values(102,'bb',50)
--為teacher和users表新增主外關聯
alter table score add constraint t_fk foreign key(uid) references users(id)
insert into score(id,grade,uid) values(1,85,110)
--刪除約束
alter table score drop constraint t_fk
mysql之非空約束,唯一約束,外來鍵約束
非空約束 是指 某些列不能設定為null值,所以要對列新增非空約束 非空約束的特點 不可以為空,但可以是重複值 not null 是非空約束的關鍵字 create table student sid int primary key auto incrament,sname varchar 50 no...
iOS SQLite的外來鍵約束
sqlite從3.6.19開始支援外來鍵約束。看了一下xcode裡的檔案,顯示版本為3.8.10.2,說明ios裡的sqlite是支援外來鍵約束的。但是編寫 試了一下,發現仍然不支援外來鍵約束。在網上查了一下,原來sqlite為了相容以前的程式,預設關閉外來鍵約束這一功能。想要啟用外來鍵約束,可以在...
外來鍵的約束(Mysql PostgreSQL)
講一下關於外來鍵的 最近在專案的表中看到這些,不懂順便查了查 onstraint c clusters pkey primary key cluster id constraint c clusters zabbix group id fkey foreign key zabbix group id...