--适用于SQL2005的新性能

SELECT top 50 * FROM
(
SELECT ROW_NUMBER() OVER (ORDER BY ID) AS RowNo,*
FROM product
) AS A
WHERE RowNo >50*254

--适用于SQL2000

select top 50 * from  product where ID not in (select top (50*253) id from product order by id) order by id

相关文章:

  • 2021-09-03
  • 2021-12-18
  • 2021-07-08
  • 2021-12-02
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-10
  • 2022-12-23
  • 2021-10-11
  • 2022-01-01
  • 2022-12-23
  • 2021-10-19
相关资源
相似解决方案