mysql两条sql合并查询总数


select IFNULL(c.nodeCount,0) + IFNULL(c.phyCount,0) as totalCount
 from (
select count(*) nodeCount, (select count(*) from rn_base a join rn_ext_systeminfo b
            on a.id = b.nodeId where (a.subType = 'VIRTUAL' or a.subType = 'PHYSICAL')) phyCount  from rn_base a join rn_ext_vir_instance b 
            on a.id = b.nodeId where a.subType = 'VIR_INSTANCE' ) c 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM