Skip to content

Commit

Permalink
Merge pull request #852 from MTES-MCT/fix-percent-autorisationlogement
Browse files Browse the repository at this point in the history
Autorisation de construction (SITADEL): remplace les pourcentages en entier par des pourcentages avec décimales
  • Loading branch information
alexisig authored Jan 16, 2025
2 parents 71a7643 + 638f198 commit 2ec920a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ SELECT
autorisations.surface_de_plancher_commencee::double precision,
coalesce(
autorisations.logements_autorises
* 100 / NULLIF(logements_vacants.logements_parc_general, 0),
* 100.0 / NULLIF(logements_vacants.logements_parc_general, 0),
0)::double precision as percent_autorises_on_parc_general,
coalesce(
NULLIF(logements_vacants.logements_vacants_parc_general, 0) * 100 / NULLIF(autorisations.logements_autorises, 0),
NULLIF(logements_vacants.logements_vacants_parc_general, 0) * 100.0 / NULLIF(autorisations.logements_autorises, 0),
0)::double precision as percent_autorises_on_vacants_parc_general
FROM
autorisations
Expand Down

0 comments on commit 2ec920a

Please sign in to comment.