02.sql 219 B

123456789101112
  1. --02、网运成本占收比(省内口径)
  2. select
  3. smonth,
  4. stype,
  5. sname,
  6. cost_total,
  7. income,
  8. cost_total/income as cost_income_rate
  9. from sqmdb_cost.chengben_shengnei
  10. --where stype='北10'
  11. --where stype='地市'
  12. where smonth='202203'