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.
 
 

9 lines
344 B

src: |
SELECT ascii(t_modes_entree.code::text) AS mode_entree_id,
t_modes_entree.code AS mode_entree_code,
CASE
WHEN t_modes_entree.code <> ''::bpchar THEN t_modes_entree.texte
ELSE 'Non saisi'::text
END AS mode_entree_texte
FROM base.t_modes_entree
ORDER BY t_modes_entree.code;