10.sql 213 B

123456789101112
  1. --10、修理维护费占收比(省内口径)
  2. select
  3. smonth,
  4. stype,
  5. sname,
  6. cost_fix,
  7. income,
  8. cost_fix/income as cost_fix_rate
  9. from sqmdb_cost.chengben_shengnei
  10. where smonth='202203'
  11. --where stype='北10'
  12. --where stype='地市'