在学习SQL Server过程中整理的T-SQL语句

源代码在线查看: create view view3 with schemabinding.sql

软件大小: 24 K
上传用户: leeixndong
关键词: Server T-SQL SQL 过程
下载地址: 免注册下载 普通下载 VIP

相关代码

				use test
				go
				create view view3 with schemabinding 
				as
				select sname,score
				       from dbo.XS,dbo.XS_KC
				       where dbo.XS.sno=dbo.XS_KC.sno
				go
				set numeric_roundabort off
				set ansi_padding,ansi_warnings,concat_null_yields_null,arithabort,quoted_identifier,ansi_nulls on
				
				create unique clustered index Inx1 on view3(sname)
				go
							

相关资源