Hi,
Try this:

select t1.a,t1.b,c,d
from t1,t2
union
select t1.a,t1.b,c,d
from t1,t2
group by t1.a,t1.b,c,d
order by a,b,c;

good luck.