100條之間的數據怎么寫?
這個主要是看你用的哪個數據庫了不同的數據庫有差異。在mysql和oracle里面用如下方法最簡單select * from table LIMIT 10,100;而在sqlserver中由于不支持limit只用其他方法啦:當此表有主鍵時:select top 100 * from 表 where 主鍵 not in(select top 10 主鍵 from 表) 如果表中無主鍵:可以用臨時表,加標識字段解決.這里的x,y可以用變量. select id=identity(int,1,1),* into #tb from 表 select * from #tb where id between 10 and 100