show/hide this revision's text 2 added 123 characters in body

Instead of building up a SQL string, why not just use a case statement in the order by?

e.g. (assuming one is sorting by first and/or last name on a table with FirstName and LastName fields)

order by
  case 
  when @sortExpression = 'lastname asc' then CAST(LastName as sql_variant)
  when @sortExpression = 'firstname asc' then CAST(FirstName as sql_variant)
  end asc,
  case
  when @sortExpression = 'lastname desc' then CAST(LastName as sql_variant)
  when @sortExpression = 'firstname desc' then CAST(FirstName as sql_variant)
  end desc

In addition, if your order by clause is different each time via dynamic SQL, the query plan will never be re-used.

show/hide this revision's text 1

Instead of building up a SQL string, why not just use a case statement in the order by?

e.g. (assuming one is sorting by first and/or last name on a table with FirstName and LastName fields)

order by
  case 
  when @sortExpression = 'lastname asc' then CAST(LastName as sql_variant)
  when @sortExpression = 'firstname asc' then CAST(FirstName as sql_variant)
  end asc,
  case
  when @sortExpression = 'lastname desc' then CAST(LastName as sql_variant)
  when @sortExpression = 'firstname desc' then CAST(FirstName as sql_variant)
  end desc