sql-表值函数tvf

带有参数的视图

  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-表值函数tvfsql-表值函数tvf

你可能感兴趣的:(sql)