SQLSERVER 分页

来源:互联网 发布:神像仓库升级数据 编辑:程序博客网 时间:2024/06/09 13:50

select   identity(int,1,1) as col_id , *   into   temp   from  uep.dbo.A_experiment 
select   *   from temp where   col_id   between   50   and   60
drop  table temp

原创粉丝点击