diff --git a/Report/019中等职业学校(机构)学生分科类情况(总计).rpx b/Report/019中等职业学校(机构)学生分科类情况(总计).rpx index 8124d8df..02929f51 100644 Binary files a/Report/019中等职业学校(机构)学生分科类情况(总计).rpx and b/Report/019中等职业学校(机构)学生分科类情况(总计).rpx differ diff --git a/Report/020中等职业学校(机构)学生分科类情况(全日制学生).rpx b/Report/020中等职业学校(机构)学生分科类情况(全日制学生).rpx index 3470f98c..830dfae0 100644 Binary files a/Report/020中等职业学校(机构)学生分科类情况(全日制学生).rpx and b/Report/020中等职业学校(机构)学生分科类情况(全日制学生).rpx differ diff --git a/Report/021中等职业学校(机构)教职工数(总计).rpx b/Report/021中等职业学校(机构)教职工数(总计).rpx index b603573c..8eb0dd69 100644 Binary files a/Report/021中等职业学校(机构)教职工数(总计).rpx and b/Report/021中等职业学校(机构)教职工数(总计).rpx differ diff --git a/Report/022中等职业学校(机构)分科专任教师数(总计).rpx b/Report/022中等职业学校(机构)分科专任教师数(总计).rpx new file mode 100644 index 00000000..4dec037c Binary files /dev/null and b/Report/022中等职业学校(机构)分科专任教师数(总计).rpx differ diff --git a/ReportSQL/023中等职业学校(机构)专任教师、聘请校外教师学历情况(总计) .txt b/ReportSQL/023中等职业学校(机构)专任教师、聘请校外教师学历情况(总计) .txt new file mode 100644 index 00000000..4f0f8979 --- /dev/null +++ b/ReportSQL/023中等职业学校(机构)专任教师、聘请校外教师学历情况(总计) .txt @@ -0,0 +1,28 @@ +--did: +--专任教师 +--其中:女2 +--实习指导课教师3 +--正高级4 +--副高级5 +--中 级6 +--初 级7 +--未定职级8 +--聘请校外教师 +--其中:女10 +--实习指导课教师11 +--外籍教师12 +--正高级13 +--副高级14 +--中 级15 +--初 级16 +--未定职级17 + +SELECT sbr.organizationNo ,1 as schoolTypeGroupNo,'一、高中阶段' as schoolTypeGroup,2 as schoolTypeGroupNo2,'(二)中等职业学校' as schoolTypeGroup2 ,sbr.businessTypeNo,case when sbr.businessTypeNo in ('368','369') then '其他机构(班)' else sbr.businessType end as businessType +, sbr.isCount ,sum(e+f+g+h+i) as teacherNo,sum(e) as teacherNo2,sum(f) as teacherNo3,sum(g) as teacherNo4,sum(h) as teacherNo5,sum(i) as teacherNo6,did +from schoolBusinessRelation sbr +inner join instanceTable it on sbr.organizationNo =it.organizationNo and sbr.businesstypeno =it.businesstypeno +inner join Z422 as j on j.instanceid =it.instanceid and j.did between 2 and 17 +where sbr.gatherRegionB ='长春市' and sbr.businessTypeNo in('362','364','365','369','361','363') and sbr.isLastYearCancel =0 and sbr.recordyear =2019 and it.recordyear =2019 and j.recordyear =2019 +group by sbr.organizationNo,sbr.businessTypeNo,sbr.businessType ,sbr.isCount,did +order by sbr.businessTypeNo; +