--- use UNION ,for example:create table #U(id int , Fname varchar(100))
insert into Utable
select  1,'a'
union 
select 2,'b'
union  
select 3,'c'select * from #udrop table #u