我有两张表 tb1 和tb2
两个表的字段都是一样的,就是存的数据不一样
比如我想从这个两个表里查询 A B C三个字段 怎么写?
SQL 查询
------解决方案--------------------
select a,b,c
from tb1
where xxxx
union all
select a,b,c
from tb2
where xxxx