Commit 6cbaeef6 authored by Johnny Leveneur's avatar Johnny Leveneur
Browse files

update bdd view ia_composante et ia_cycle

parent 82352c0f
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
WITH tmp AS (
         SELECT DISTINCT etudiant_inscription_administrative.composante
           FROM etudiant_inscription_administrative
         SELECT DISTINCT eia.composante
           FROM etudiant_inscription_administrative eia
        )
 SELECT row_number() OVER () AS id,
    tmp.composante
   FROM tmp
  WHERE ((tmp.composante IS NOT NULL) AND (btrim((tmp.composante)::text) <> ''::text))
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
@@ -5,3 +5,4 @@ WITH tmp AS (
 SELECT row_number() OVER () AS id,
    tmp.cycle
   FROM tmp
  WHERE ((tmp.cycle IS NOT NULL) AND (btrim((tmp.cycle)::text) <> ''::text))
 No newline at end of file