pour déploiement auto v2 via gitlab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
555 B

src: |
SELECT DISTINCT t_groupes_activite.oid,
(t_groupes_activite.code::text || ' '::text) || t_groupes_activite.texte_court::text AS texte,
t_groupes_activite.code
FROM pmsi.t_groupes_activite,
pmsi.t_ghm
WHERE t_ghm.groupe_activite_id = t_groupes_activite.oid AND (t_ghm.oid IN ( SELECT DISTINCT p_rss.ghm_id
FROM pmsi.p_rss
ORDER BY p_rss.ghm_id))
ORDER BY t_groupes_activite.code, t_groupes_activite.oid, ((t_groupes_activite.code::text || ' '::text) || t_groupes_activite.texte_court::text);