主頁 > 知識(shí)庫 > SQL Server創(chuàng)建數(shù)據(jù)庫和數(shù)據(jù)表的相關(guān)約束實(shí)現(xiàn)方法

SQL Server創(chuàng)建數(shù)據(jù)庫和數(shù)據(jù)表的相關(guān)約束實(shí)現(xiàn)方法

熱門標(biāo)簽:地圖標(biāo)注跑線下市場(chǎng) 疫情時(shí)期電話機(jī)器人 樂昌電話機(jī)器人 臺(tái)灣外呼系統(tǒng)軟件 真3地圖標(biāo)注 地圖標(biāo)注可以編輯地名嗎 濮陽清豐400開頭的電話申請(qǐng) 南京怎么申請(qǐng)400這種電話 南通智能外呼系統(tǒng)怎么樣

本文分析了SQL Server創(chuàng)建數(shù)據(jù)庫和數(shù)據(jù)表的相關(guān)約束實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:

創(chuàng)建約束語法如下:

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
對(duì)該公司活動(dòng)法律的限制

2. 強(qiáng)迫;強(qiáng)制[U]
He acted under constraint.
他被迫采取行動(dòng)。

3. 抑制;拘束;態(tài)度不自然[U]
She showed constraint in the presence of the strangers.
她在陌生人面前顯得很拘束。

4. 拘禁[U]

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

clustered

聚集成群的

--主外鍵:選中設(shè)置外鍵的列,右鍵--關(guān)系--表和列規(guī)范--點(diǎn)擊帶有“...”的按鈕

--創(chuàng)建帶有主鍵的表,其中,[tid]desc,看上去是倒敘添加數(shù)字,其實(shí)不是,添加數(shù)據(jù)是正常的,但是當(dāng)數(shù)據(jù)添加完成后,最后添加的數(shù)據(jù)將第一個(gè)被查詢出來。

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

--設(shè)置外鍵

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

--給沒有設(shè)置主鍵的表設(shè)置主鍵,主鍵字段必須為非空。

復(fù)制代碼 代碼如下:
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

--創(chuàng)建修改視圖

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

--看結(jié)果select * from dbo.view2
--刪除試圖

drop view dbo.view2
 
--主外鍵:選中設(shè)置外鍵的列,右鍵--關(guān)系--表和列規(guī)范--點(diǎn)擊帶有“...”的按鈕

--創(chuàng)建帶有主鍵的表,其中,[tid]desc,看上去是倒敘添加數(shù)字,其實(shí)不是,添加數(shù)據(jù)是正常的,但是當(dāng)數(shù)據(jù)添加完成后,最后添加的數(shù)據(jù)將第一個(gè)被查詢出來。

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

--設(shè)置外鍵

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

--給沒有設(shè)置主鍵的表設(shè)置主鍵,主鍵字段必須為非空。

復(fù)制代碼 代碼如下:
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 :判空
//邏輯層驗(yàn)證 :通過java或者c#進(jìn)行驗(yàn)證 :登錄名是否正確,唯一性通常在此作,盡可能降低數(shù)據(jù)庫服務(wù)器的負(fù)載
//數(shù)據(jù)庫驗(yàn)證 :唯一約束,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
 )
)

--給已有的字段創(chuàng)建唯一約束

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

注意:字段中已有值不能重復(fù)

--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

--默認(rèn)約束

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

--給已有的字段增加默認(rèn)約束

復(fù)制代碼 代碼如下:
alter table test3 add default 0 for tname1

--添加綁定值
復(fù)制代碼 代碼如下:
exec sp_bindefault td, 'test2.vname'

--卸載綁定值
復(fù)制代碼 代碼如下:
exec sp_unbindefault 'test2.vname'

補(bǔ)充:數(shù)據(jù)庫中約束

約束的目的:確保表中數(shù)據(jù)的完整性

1. 常見的約束類型:

a) 主鍵約束(Primary Key Constraint):要求主鍵列數(shù)據(jù)唯一,并且不允許為空
b) 唯一約束(Unique Constraint):要求該列唯一,允許為空,但只能出現(xiàn)一個(gè)空值。
c) 檢查約束(Check Constraint):某列取值范圍限制、格式限制等,如有關(guān)年齡的約束
d) 默認(rèn)約束(Default Constraint):某列的默認(rèn)值,如果男生較多,性別默認(rèn)為“男”
e) 外鍵約束(Foreign Key Constraint):用于兩表間建立關(guān)系,需要指定引用主表的哪列

2. 約束的格式:

alter table 表名

add constraint 約束名(取名規(guī)則:約束類型_約束字段)  約束類型  具體的約束說明
3. 例子:

alter table stu
  add constraint pk_stuno primary key(sno)--sno學(xué)號(hào)為主鍵
alter table stu
  add constraint uq_stuid unique(sid)--sid為身份證號(hào),每個(gè)身份證號(hào)是唯一的
alter table stu
  add constraint df_sadess default('地址不詳') for saddress--saddress為地址,默認(rèn)值為地址不詳
alter table stu
  add constraint ck_sage check(sage between 15 and 40)--sage學(xué)生年齡,要求其值在到之間
alter table scores
  add constraint fk_st foreign key(sno) references stu(sno)
--外鍵約束,主表stu連接從表scores,關(guān)鍵字段sno

創(chuàng)建表間約束并不困難,但是專業(yè)的名詞需要記住

希望本文所述對(duì)大家SQL Server數(shù)據(jù)庫設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • sql server建庫、建表、建約束技巧
  • SQL Server約束增強(qiáng)的兩點(diǎn)建議
  • 數(shù)據(jù)庫設(shè)計(jì)的完整性約束表現(xiàn)在哪些方面
  • 必須會(huì)的SQL語句(八) 數(shù)據(jù)庫的完整性約束
  • sql腳本查詢數(shù)據(jù)庫表,數(shù)據(jù),結(jié)構(gòu),約束等操作的方法
  • 數(shù)據(jù)庫高并發(fā)情況下重復(fù)值寫入的避免 字段組合約束

標(biāo)簽:廣安 福建 陜西 阿里 南京 河北 通遼 馬鞍山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《SQL Server創(chuàng)建數(shù)據(jù)庫和數(shù)據(jù)表的相關(guān)約束實(shí)現(xiàn)方法》,本文關(guān)鍵詞  SQL,Server,創(chuàng)建,數(shù)據(jù)庫,和,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《SQL Server創(chuàng)建數(shù)據(jù)庫和數(shù)據(jù)表的相關(guān)約束實(shí)現(xiàn)方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于SQL Server創(chuàng)建數(shù)據(jù)庫和數(shù)據(jù)表的相關(guān)約束實(shí)現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章