आप मूल रूप से COALESCE
. का वर्णन कर रहे हैं समारोह:
https://www.postgresql.org/docs/9.6/static /functions-conditional.html
आपके मामले में:
SELECT id, COALESCE(name, alias) AS result FROM yourtable;
आप मूल रूप से COALESCE
. का वर्णन कर रहे हैं समारोह:
https://www.postgresql.org/docs/9.6/static /functions-conditional.html
आपके मामले में:
SELECT id, COALESCE(name, alias) AS result FROM yourtable;