SQL Server创建数据库和数据表的相关约束实现方法
本文分析了SQL Server创建数据库和数据表的相关约束实现方法。分享给大家供大家参考,具体如下: 创建约束语法如下: CREATE DATABASE [test] ON (NAME=N'test',FILENAME=N'd:SQL2kt_Datatest.mdf',SIZE=3mb,MAXSIZE=UNLIMITED,FILEGROWTH=1MB) LOG ON (NAME=N'test_log',FILENAME=N'd:SQL2kt_Datatest_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 test5 drop constraint(限制) pk_id(别名) --删除外键 alter table test4 drop constraint fkt(别名) 约束 --非空约束 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 ) ) --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 lt;= 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 test5 drop constraint pk_id --删除外键 alter table test4 drop constraint fkt 约束 //javascript :判空 --非空约束 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 ) --给已有的字段增加默认约束 补充:数据库中约束 约束的目的:确保表中数据的完整性 1. 常见的约束类型: (编辑:南京站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |