SQL分页语句

浏览:30日期:2023-06-27

--前提是必需有一列是自动增长类型,唯一性

--方法一

SELECT DISTINCT TOP 8 CategoryIDFROM tbl_Product_ProductsWHERE (UserID = 73) AND (CategoryID > (SELECT MAX(categoryid) FROM (SELECT DISTINCT TOP 16 categoryid FROM tbl_product_products where userid=73 ORDER BY categoryid) AS b))ORDER BY CategoryID

--方法二

select top 10 * from [order details]where orderid>all(select top 10 orderid from [order details] order by orderid)order by orderid

相关文章: