You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(* 分页查询
select top num * //num为每页的行数
from
(
select row_number() over(order by file_name) as rownumber,* from file_list
) A
where rownumber >n //m为第几页 n=m*num
*)