两个表结构一样,比如
表 temp1
a b c
---------------
12 df ty
34 jhyt re
表 temp2
a b c
---------------
45 ad w4
345 sg yik
89 er4 sgd
希望能得到结果
a b c
---------------
12 df ty
34 jhyt re
45 ad w4
345 sg yik
89 er4 sgd
------解决方案--------------------
select * from temp1
union all
select * from temp2