怎样用SQL语句合并两个表中的两个列?

如题所述

第1个回答  2018-01-06

建议直接用union all程序:

select names as typ

from table1

union all

select names

from table2

本回答被网友采纳
相似回答