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

源代码在线查看: create function st_score.sql

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

相关代码

				create function st_score
				(
				@student_id char(10)
				)
				returns table
				as return
				(
				select *
				      from test..st_view
				      where dbo.st_view.sno=@student_id
				)
							

相关资源