这篇文章主要介绍了SQL Server创建数据库和数据表的相关约束实现方法,以实例形式较为详细的分析讲述了数据库约束的

本文分析了SQL Server创建数据库数据表相关约束实现方法。分享给大家供大家参考,具体如下:

SQL Server创建数据库和数据表的相关约束实现方法(数据库表的建立及设置约束性)  Server 创建 数据库 数据表 相关约束 数据库约束 第1张

创建约束语法如下:

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. 常见的约束类型:


注:相关教程知识阅读请移步到MSSQL教程频道。
转载请说明出处
知优网 » SQL Server创建数据库和数据表的相关约束实现方法(数据库表的建立及设置约束性)

发表评论

您需要后才能发表评论