diff --git a/Report/026中等职业学校(机构)校舍情况(总计).rpx b/Report/026中等职业学校(机构)校舍情况(总计).rpx new file mode 100644 index 00000000..fe530331 Binary files /dev/null and b/Report/026中等职业学校(机构)校舍情况(总计).rpx differ diff --git a/ReportSQL/026中等职业学校(机构)校舍情况(总计) .txt b/ReportSQL/026中等职业学校(机构)校舍情况(总计) .txt new file mode 100644 index 00000000..68481c81 --- /dev/null +++ b/ReportSQL/026中等职业学校(机构)校舍情况(总计) .txt @@ -0,0 +1,25 @@ +--did +--一、教学及辅助用房2 +--教室3 +--图书馆4 +--实验室、实习场所5 +--体育馆6 +--会堂7 +--二、行政办公用房8 +--三、生活用房9 +--学生宿舍(公寓)10 +--学生食堂11 +--教工宿舍(公寓)12 +--教工食堂13 +--生活福利及附属用房14 +--四、教工住宅15 +--五、其他用房16 + +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(d) as d,sum(e) as e, sum(f) as f,sum(g) as g , sum(h) as h, sum(j) as j,sum(k) as k , did +from schoolBusinessRelation sbr +inner join instanceTable it on sbr.organizationNo =it.organizationNo and sbr.businesstypeno =it.businesstypeno +inner join Z511 as j on j.instanceid =it.instanceid and did between 2 and 16 +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,sbr.citycountrytypeno ,sbr.cityCountryGroup,did +order by sbr.businessTypeNo; \ No newline at end of file diff --git a/ReportSQL/027职业技术培训机构基本情况 .txt b/ReportSQL/027职业技术培训机构基本情况 .txt new file mode 100644 index 00000000..f549fde2 --- /dev/null +++ b/ReportSQL/027职业技术培训机构基本情况 .txt @@ -0,0 +1,41 @@ +--did +--职工技术培训学校(机构) +--教育部门办3 +--其他部门办4 +--民办5 +--中外合作办6 +--农村成人文化技术培训学校(机构) +--教育部门办8 +--其中:县办9 +--乡办10 +--村办11 +--其他部门办12 +--民办13 +--中外合作办14 +--其他培训机构(含社会培训机构) +--教育部门办16 +--其他部门办17 +--民办18 +--中外合作办19 +select sum(d),sum(e),sum(f),sum(g),sum(h),sum(i),sum(j),sum(k),sum(l),sum(m) from zx211 z where did between 2 and 19; + +--did +--总计中:少数民族20 +--培训形式:资格证书培训21 +--岗位证书培训22 +--培训对象:党政管理培训23 +--企业经营管理培训24 +--专业技术培训25 +--其中:幼儿园教师26 +--中小学教师27 +--中职学校教师28 +--高等教育学校教师29 +--职业技能培训30 +--其中:农村劳动者31 +--进城务工人员32 +--其他培训33 +--其中:学生34 +--老年人35 +select sum(d),sum(e),sum(f),sum(g),sum(h),sum(i),sum(j),sum(k),sum(l),sum(m),did from zx211 z where did between 20 and 35 +group by did order by did; +