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

2025-02-27 06:30:41
推荐回答(1个)
回答1:

建议直接用union all程序:

select names as typ

from table1

union all

select names

from table2