码迷,mamicode.com
首页 > 数据库 > 详细

SQL_创建表值函数

时间:2014-10-06 01:20:29      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   c   on   

--创建表值函数
create function GetClassMember(@className nvarchar(50))
returns table
as
return(select * from Students where ClassName=@className)

go

--调用表值函数
select * from GetClassMember(高三一班)

 

SQL_创建表值函数

标签:style   blog   color   io   ar   sp   div   c   on   

原文地址:http://www.cnblogs.com/zwhFighting/p/4007784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!