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

源代码在线查看: create function score_table().sql

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

相关代码

				create function score_table
				(
				@sno char(10)
				)
				returns @score table
				(
				xs_id char(6),
				xs_name char(8),
				kc_name char(16),
				xf tinyint,
				cj tinyint
				)
				as
				begin
				    insert into @score
				           select XS.sno,XS.sname,KC.cname,KC.credit,XS_KC.score
				                from XS,KC,XS_KC
				                     where XS.sno=XS_KC.sno and KC.cno=XS_KC.cno and XS.sno=@sno
				    return
				end			

相关资源