SELECT WhatEverFROM MyTableWhere Something = XORDER BY ISNULL(StringColmn,'zzzzz')SELECT WhatEverFROM MyTableWHERE Something = XORDER BY CASE WHEN StringColumn IS NULL THEN 1 ELSE 0 END, StringColumn
declare @DemoTbl table (i int identity(1,1), ch char(1))insert into @DemoTbl (ch)select 'b'union all select nullunion all select 'a'union all select nullunion all select 'c'union all select 'd'select *from @DemoTblorder by case when ch is null then 1 else 0 end, chselect * from @DemoTblorder by ISNULL(ch,'zzzz'), ch