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 

 

相关文章:

  • 2021-08-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
  • 2022-02-18
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-17
  • 2022-01-21
  • 2021-08-02
  • 2022-12-23
  • 2021-10-16
  • 2022-12-23
相关资源
相似解决方案