大表分表后每个表的结构相同,跨表查询时可以用sql的union
比如a,b表结构相同可以通过union来联接
select * from a
union all
select * from b
where
。。。。
但是这样性能比较低,所有的表都要查询;
大表分表后每个表的结构相同,跨表查询时可以用sql的union
比如a,b表结构相同可以通过union来联接
select * from a
union all
select * from b
where
。。。。
但是这样性能比较低,所有的表都要查询;