correction du tableau de synthèse

This commit is contained in:
MaelReboux 2019-03-06 21:51:37 +01:00
parent 8712434b80
commit da365ab052

View file

@ -133,15 +133,15 @@ ALTER TABLE phase_1_pk_auto_4326 OWNER to redadeg;
-- vue tableau de bord de synthèse -- vue tableau de bord de synthèse
DROP VIEW IF EXISTS tdb_secteur_longueur ; DROP VIEW IF EXISTS phase_1_tdb ;
CREATE VIEW tdb_secteur_longueur AS CREATE VIEW phase_1_tdb AS
SELECT SELECT
secteur_id, secteur_nom_br, secteur_nom_fr, t.secteur_id, s.nom_br, s.nom_fr,
SUM(longueur) AS longueur_m, SUM(t.longueur) AS longueur_m,
TRUNC( SUM(longueur)/1000::numeric , 3) AS longueur_km, TRUNC( SUM(t.longueur)/1000::numeric , 3) AS longueur_km,
ROUND( SUM(longueur)/1000::numeric ) AS longueur_km_arrondi ROUND( SUM(t.longueur)/1000::numeric ) AS longueur_km_arrondi
FROM v_phase_1_trace_troncons FROM phase_1_trace t JOIN secteur s ON t.secteur_id = s.id
GROUP BY secteur_id, secteur_nom_br, secteur_nom_fr GROUP BY secteur_id, nom_br, nom_fr
ORDER BY secteur_id ; ORDER BY secteur_id ;