--09、百元资产修理维护费 ---北10 select t1.smonth,t1.sname,t1.cost_fix,t2.zichan, (t1.cost_fix/t2.zichan)*100 as cost_bai_fix from (select smonth,stype,sname,cost_fix from sqmdb_cost.chengben_shengnei where smonth='202203' and stype='北10') t1 join (select smonth,sname,stype,(column7+column8)/2 as zichan from sqmdb_cost.report80054 where period_type='M' and sname in('北京','天津','河北','山西','内蒙古','辽宁','吉林','黑龙江','山东','河南') and stype='分省展现' and smonth='202203') t2 on t1.sname=t2.sname ---地市 select t1.smonth,t1.sname,t1.cost_fix,t2.zichan, (t1.cost_fix/t2.zichan)*100 as cost_bai_fix from (select smonth,stype,sname,cost_fix from sqmdb_cost.chengben_shengnei where smonth='202203' and stype='地市') t1 join (select smonth,sname,stype,(column7+column8)/2 as zichan from sqmdb_cost.report80054 where period_type='M' and sname in('石家庄_河北','唐山_河北','秦皇岛_河北','邯郸_河北','邢台_河北','保定_河北','张家口_河北','承德_河北','廊坊_河北','沧州_河北','衡水_河北','雄安_河北') and smonth='202203') t2 on t1.sname=t2.sname