شما میتونید از Temptable استفاده کنید. نتیجه query اول رو توی temptable بریزید
SELECT t1.TAR,t1.b1,t1.b2,t1.b3,t1.b4,t1.b5
into #temp1
from VIEW_CROSSCITY t1
Where t1.code='0100' and t1.TAR ='9011'
بعد روی جدور temp محاسبات رو انجام دهید
سپس جدول temp رو باجدول اصلیتان Union کنید
SELECT t1.TAR,t1.b1,t1.b2,t1.b3,t1.b4,t1.b5
into #temp1
from VIEW_CROSSCITY t1
Where t1.code='0100' and t1.TAR ='9011'
union
SELECT t1.TAR,t1.b1,t1.b2,t1.b3,t1.b4,t1.b5
from #temp1
Where t1.code='0100' and t1.TAR ='9011'