程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> MSSQL >> SQL Server創立數據庫和數據表的相干束縛完成辦法

SQL Server創立數據庫和數據表的相干束縛完成辦法

編輯:MSSQL

SQL Server創立數據庫和數據表的相干束縛完成辦法。本站提示廣大學習愛好者:(SQL Server創立數據庫和數據表的相干束縛完成辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是SQL Server創立數據庫和數據表的相干束縛完成辦法正文


本文剖析了SQL Server創立數據庫和數據表的相干束縛完成辦法。分享給年夜家供年夜家參考,詳細以下:

創立束縛語法以下:

CREATE DATABASE [test]
ON
(NAME=N'test',FILENAME=N'd:\SQL2kt_Data\test.mdf',SIZE=3mb,MAXSIZE=UNLIMITED,FILEGROWTH=1MB)
LOG ON
(NAME=N'test_log',FILENAME=N'd:\SQL2kt_Data\test_log.ldf',SIZE=1MB,MAXSIZE=2048MB,FILEGROWTH=10%)
GO

名詞說明(翻譯):

constraint

1. 束縛;限制[C][(+on)]
legal constraints on the company's activities
對該公司運動司法的限制

2. 強制;強迫[U]
He acted under constraint.
他自願采用行為。

3. 克制;拘謹;立場不天然[U]
She showed constraint in the presence of the strangers.
她在生疏人眼前顯得很拘謹。

4. 拘禁[U]

5. 拘謹(或限制)的事物[C]

clustered

集合成群的

--主外鍵:選中設置外鍵的列,右鍵--關系--表和列標准--點擊帶有“...”的按鈕

--創立帶有主鍵的表,個中,[tid]desc,看上去是倒敘添加數字,其實不是,添加數據是正常的,然則當數據添加完成後,最初添加的數據將第一個被查詢出來。

create table dbo.test3(
 [tid] [int] identity(100,1) not null,
 [name] [varchar](100),
constraint [pk_tid] primary key clustered(
 [tid] desc
)
)on [primary]

--設置外鍵

alter table dbo.test4 add fkt
 foreign key (tid)
 references(來自) dbo.test3([tid]) ON UPDATE CASCADE ON DELETE CASCADE

--給沒有設置主鍵的表設置主鍵,主鍵字段必需為非空。
alter table dbo.test5 with check add constraint pk_id primary key (id)

--刪除主鍵()

alter table test5
drop constraint(限制) pk_id(別號)

--刪除外鍵

alter table test4
drop constraint fkt(別號)

束縛

--非空束縛

alter table test5
alter column name int not null

--獨一束縛

直接在表中樹立獨一束縛、
constraint 束縛別號 unique 列表名

create table dbo.test6(
 id int not null,
 vname varchar(20)
constraint test6_unique unique nonclustered(
 vname asc
 )
)

--check束縛

樹立check束縛

constraint 束縛別號 check 束縛前提

(修正)

alter table test6
with nocheck add constraint test6_check
check(vname != 'shit')

--卸載束縛

alter table test6
drop constraint test6_check

--創立修正視圖

create view dbo.view2
as
select * from dbo.test6 where dbo.test6.id <= 3;

--看成果select * from dbo.view2
--刪除試圖

drop view dbo.view2
 
--主外鍵:選中設置外鍵的列,右鍵--關系--表和列標准--點擊帶有“...”的按鈕

--創立帶有主鍵的表,個中,[tid]desc,看上去是倒敘添加數字,其實不是,添加數據是正常的,然則當數據添加完成後,最初添加的數據將第一個被查詢出來。

create table dbo.test3(
 [tid] [int] identity(100,1) not null,
 [name] [varchar](100),
constraint [pk_tid] primary key clustered(
 [tid] desc
)
)on [primary]

--設置外鍵

alter table dbo.test4 add constraint fkt
 foreign key (tid)
 references dbo.test3([tid]) ON UPDATE CASCADE ON DELETE CASCADE

--給沒有設置主鍵的表設置主鍵,主鍵字段必需為非空。
alter table dbo.test5 with check add constraint pk_id primary key (id)
--刪除主鍵

alter table test5
drop constraint pk_id

--刪除外鍵

alter table test4
drop constraint fkt

束縛

//javascript :判空
//邏輯層驗證 :經由過程java或許c#停止驗證 :登錄名能否准確,獨一性平日在此作,盡量下降數據庫辦事器的負載
//數據庫驗證 :獨一束縛,check束縛

--非空束縛

alter table test5
alter column name int not null

--獨一束縛

create table dbo.test6(
 id int not null,
 vname varchar(20)
constraint test6_unique unique nonclustered(
 vname asc
 )
)

--給已有的字段創立獨一束縛

CREATE UNIQUE iNDEX 索引名 ON 表稱號(字段名)

留意:字段中已有值不克不及反復

--check束縛

alter table test6
with nocheck add constraint test6_check
check(vname != 'shit')
alter table test3
with nocheck add constraint test3_check2
check(tname != 'shit' and tname != 'fuck' and tname != 'ohyeah')

--卸載束縛

alter table test6
drop constraint test6_check

--默許束縛

create table test4(
 tid int,
 pwd varchar(20) default '000000' not null
)

--給已有的字段增長默許束縛
alter table test3 add default 0 for tname1
--添加綁定值
exec sp_bindefault td, 'test2.vname'
--卸載綁定值
exec sp_unbindefault 'test2.vname'

彌補:數據庫中束縛

束縛的目標:確保表中數據的完全性

1. 罕見的束縛類型:

a) 主鍵束縛(Primary Key Constraint):請求主鍵列數據獨一,而且不許可為空
b) 獨一束縛(Unique Constraint):請求該列獨一,許可為空,但只能湧現一個空值。
c) 檢討束縛(Check Constraint):某列取值規模限制、格局限制等,若有關年紀的束縛
d) 默許束縛(Default Constraint):某列的默許值,假如男生較多,性別默許為“男”
e) 外鍵束縛(Foreign Key Constraint):用於兩表間樹立關系,須要指定援用主表的哪列

2. 束縛的格局:

alter table 表名

add constraint 束縛名(取名規矩:束縛類型_束縛字段)  束縛類型  詳細的束縛解釋
3. 例子:

alter table stu
  add constraint pk_stuno primary key(sno)--sno學號為主鍵
alter table stu
  add constraint uq_stuid unique(sid)--sid為身份證號,每一個身份證號是獨一的
alter table stu
  add constraint df_sadess default('地址不詳') for saddress--saddress為地址,默許值為地址不詳
alter table stu
  add constraint ck_sage check(sage between 15 and 40)--sage先生年紀,請求其值在到之間
alter table scores
  add constraint fk_st foreign key(sno) references stu(sno)
--外鍵束縛,主表stu銜接從表scores,症結字段sno

創立表間束縛其實不艱苦,然則專業的名詞須要記住

願望本文所述對年夜家SQL Server數據庫設計有所贊助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved