declare @temp table(aa varchar(10),bb varchar(10))
Insert into @temp
select 'aa','bb'select * from @temp union select aa,bb from table1