Skip to content

Commit

Permalink
Merge pull request #1552 from Opetushallitus/lukio-opiskelijamaaratra…
Browse files Browse the repository at this point in the history
…portti-korjaus

Korjaa lukion opiskelijamääräraportille väärät nuorten ja aikuisten määrät
  • Loading branch information
ilkkahanninen authored Sep 13, 2021
2 parents ee8627e + ac4c1b3 commit d62f748
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ with oppija as (select
count(case when kotikunta isnull then 1 end) ei_kotikuntaa,
count(case when kotikunta = any($ahvenanmaanKunnat) then 1 end) kotikunta_ahvenanmaa
from oppija
where oppimaara_koodiarvo = 'nuortenops'
where (oppimaara_koodiarvo = 'nuortenops' and suorituksen_tyyppi = 'lukionoppimaara')
or suorituksen_tyyppi in (
'internationalschooldiplomavuosiluokka',
'internationalschoolmypvuosiluokka',
Expand All @@ -171,7 +171,7 @@ with oppija as (select
count(case when kotikunta isnull then 1 end) ei_kotikuntaa,
count(case when kotikunta = any($ahvenanmaanKunnat) then 1 end) kotikunta_ahvenanmaa
from oppija
where oppimaara_koodiarvo = 'aikuistenops'
where (oppimaara_koodiarvo = 'aikuistenops' and suorituksen_tyyppi = 'lukionoppimaara')
group by oppilaitos_oid
), aineopiskelija as (
select
Expand Down

0 comments on commit d62f748

Please sign in to comment.