首页 > 代码库 > 常用的SQL

常用的SQL

从表A中查询第10条到第23条数据,表中有ID字段,但可能不连续。

select top 23 * from Awhere ID not in (      select top 10 ID from A)

 

常用的SQL