I have table in SQL Server which contains a column of type \"int\". The column can contain positive as well as negative values. I want to carry out sorting based on this col
Select * from Table order by Case when sortcolumn<0 then 1 else 0 end ,sortcolumn