sql 从查询结果中取第1001至1100行数据

SELECT IDENTITY(int) id0,* into #temp from  [SysBI].[dbo].[SensorData]


select id0,
[DeviceID]
      ,[SensorTypeID]
      ,[SensorTypeIndex]
      ,[RecTime]
      ,[Data]
      ,[MastheadGUID]
  FROM #temp where id0 > 1000 and id0 < 1101

你可能感兴趣的:(sql 从查询结果中取第1001至1100行数据)