意见箱
恒创运营部门将仔细参阅您的意见和建议,必要时将通过预留邮箱与您保持联络。感谢您的支持!
意见/建议
提交建议

SQL Server如创建数据库和数据表的相关约束实现方法

来源:恒创科技 编辑:恒创科技编辑部
2023-12-16 03:59:59



这篇文章主要介绍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)]

2. 强迫;强制[U]

3. 抑制;拘束;态度不自然[U]

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数据库中创建表间的相关约束就介绍到这,希望本文对大家有帮助,想要了解更多sql server创建约束的内容,大家可以关注恒创科技其它相关文章。

上一篇: SQL Server聚合函数算法优化的小技巧 下一篇: System表空间不足如何处理,怎样查表空间占用的情况