sql 语句集合
UNION ALL 并列写
select count(*) from base1
union all
select count(*) from base2
union all
select count(*) from base3
inner join 内连接
select neu.id,count(*) from cm_cni_bandwidth_op op
inner join cm_cni_qos_policies_neu neu on neu.id = op.id
where op.IS_DELETE = 0;