I am trying to select rows into a temporary table with a CASE
statement in the ORDER BY
clause but records are not being sorted on insert.
Declare @orderby varchar(10) , @direction varchar(10)
set @orderby = 'col1'
set @direction = 'desc'
select identity (int) as autoid, *
into #temp
from table
order by case when @direction = 'desc' and @orderby = 'co1' then col1 end desc
declare @startrow int
declare @maxrows int
set @starrow = 19
set @maxrow = 30
set rowcount @maxrows
select * from #temp
where autoid > @startrow
You'll need to use multiple sort conditions in your order by clause to handle this properly. The problem with this approach is that the performance will be bad when you have a lot of rows in the table because of that nasty sort operation.
Instead, you may be better off using dynamic SQL (as someone else suggested).