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.
|
SELECT '学校总数' AS title,sum(count) AS count FROM mv_db_base_school
|
|
UNION ALL
|
|
SELECT '教职工总数' AS title, jzgno AS count FROM mv_db_base_jiaozhigong
|
|
UNION ALL
|
|
SELECT '学生总数' AS title, sum(zaixiaono) AS count FROM mv_db_base_student |