select no = identity ( int , 1 , 1 ),c_name into #temptable from cakeinfo select * from #temptable where no > 5 drop table #temptable Select no = Identity ( int , 1 , 1 ), * Into #temptable From TableName -- Order By SortField Select * From #temptable -- Where no>=6 And no < 10 Drop Table #temptable