Well you could ...

Code:
insert into t1
select col1 from t2;

insert into t1
select col1 from t2
union all
select col1 from t3;
... that sort of thing