同一mysql数据库.两个表怎么合并在一个里面

2024年11月22日 11:41
有1个网友回答
网友(1):

怎么样合并?两个表字段是否一致?
如果只是读取的话,可以加个视图,用union拼接

select column from a
union
select column from b