-前提是必需有一列是自动增长类型,唯一性
--方法一
SELECT DISTINCT TOP 8 CategoryID FROM tbl_Product_Products WHERE (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
关注此文的读者还看过:
- 2010-4-1 18:12:45 预防非法表D99_Tmp,kill_kk的建立
- 2008-4-23 15:53:39 SQL Server数据库超级管理员账号防护知识
- 2008-4-11 21:37:35 SQL Server 2005数据库镜像配置脚本示例
- 2008-4-4 9:12:54 讲解如何实现互联网上数据库的安全
- 2008-4-1 11:07:24 SQL 2005数据库转到SQL 2000的步骤讲解
- 2008-3-31 12:39:45 SQL Server自动生成日期加数字的序列号
- 2008-3-31 12:39:07 SQL Server 2000的数据库容量究竟是多大
- 2008-3-18 18:01:49 SQL Server 2005数据库的同义词Bug 讲解
|