
取n到m条的语句为:
select * from #temp where id0 >=n and id0 <= m
假如你在执行select identity(int) id0,* into #temp from tablename这条语句的时候报错,那是因为你的DB中间的select into/bulkcopy属性没有打开要先执行:
exec sp_dboption 你的DB名字,'select into/bulkcopy',true

4.假如表里有identity属性,那么简单:
select * from tablename where identitycol between n
评论加载中…
![]() |