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

sql server 创建内联表值函数

时间:2014-05-08 22:00:43      阅读:454      评论:0      收藏:0      [点我收藏+]

标签:class   int   c   数据   使用   cti   

表值函数就是返回table 的函数使用它可以方便的进行查询的处理

创建的代码如下:

create FUNCTION returunclassfirstlist

 -- Add the parameters for the function here
 
)
RETURNS TABLE
AS
RETURN
(
 -- Add the SELECT statement with parameter references here
 select * from classfirst;
)

我们在使用创建的函数的时候如下:

select * from returunclassfirstlist();
select * from returunclassfirstlist() where CONVERT(int,classid)<300;

注意 第二个 sql 就是说对于创建的表值函数我们可以进行数据的筛选

具体的数据就不粘贴了。

sql server 创建内联表值函数,布布扣,bubuko.com

sql server 创建内联表值函数

标签:class   int   c   数据   使用   cti   

原文地址:http://www.cnblogs.com/rongfengliang/p/3709223.html

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