You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
352 B
7 lines
352 B
select '教职工总人数' as title,jzgno as count from mv_db_base_jiaozhigong
|
|
union all
|
|
select '女教职工总人数' as title,nv_jzgno as count from mv_db_base_jiaozhigong
|
|
union all
|
|
select '专任教师总人数' as title,sum(teacherno) from mv_db_base_zhuanrenjiaoshi
|
|
union all
|
|
select '在编教师总人数' as title,count from mv_db_base_zaibian |