Если вы хотите вставить значения в одно предложение вставки, вы можете сделать это следующим образом:
insert into yourTable (yourFields)
select value1 as yourField1, ...
where (select count(*) from yourTable ) =0
Тестирование :
create table #t (k int);
insert into #t
select 1
where (select count(*) from #t ) =0
insert into #t
select 2 as k;
insert into #t
select 3
where (select count(*) from #t ) =0
select * from #t;
Обратите внимание, что только '1 'и' 2 'вставлены, а не' 3 '.