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

sql-表值函数tvf

时间:2015-04-17 15:12:52      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

带有参数的视图

  create function fn_fenye
  (@count as int,@page as int) returns table
  as
  return
  select * from (select row_number() over (order by id)as num,* from dbo.Scores) as tableA
  where tableA.num between @count*(@page-1)+1 and @count*@page
 
  select * from fn_fenye(3,2)

  技术分享技术分享

技术分享

sql-表值函数tvf

标签:

原文地址:http://www.cnblogs.com/mongo/p/4434834.html

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