Vous décrivez essentiellement le COALESCE
fonction :
https://www.postgresql.org/docs/9.6/static /fonctions-conditionnelles.html
Dans votre cas :
SELECT id, COALESCE(name, alias) AS result FROM yourtable;
Vous décrivez essentiellement le COALESCE
fonction :
https://www.postgresql.org/docs/9.6/static /fonctions-conditionnelles.html
Dans votre cas :
SELECT id, COALESCE(name, alias) AS result FROM yourtable;