求助,如何将若干数据库同一数据表查询结果合并
几个数据库的名称分别为aa,aa_2010,aa_2011,aa_2009,表为mxz我试过
use aa
select * from mxz where 条件
union
use aa_2010
select * from mxz where 条件
union
use aa_2011
select * from mxz where 条件
union
use aa_2009
select * from mxz where 条件
会报错