In pratica stai descrivendo il COALESCE
funzione:
https://www.postgresql.org/docs/9.6/static /funzioni-condizionale.html
Nel tuo caso:
SELECT id, COALESCE(name, alias) AS result FROM yourtable;
In pratica stai descrivendo il COALESCE
funzione:
https://www.postgresql.org/docs/9.6/static /funzioni-condizionale.html
Nel tuo caso:
SELECT id, COALESCE(name, alias) AS result FROM yourtable;