if 0 = (select count(*) from tbl where conditions)
select 'None' as s, 0 as n
else
select s, n from tbl where conditions
Если строки возвращаются из процедуры, в отличие от выбора, выполняемого во временной таблице, то то же упражнение. Как это:
create table #tmp (s varchar(17), n integer)
insert into #tmp
execute myproc