このラッパーを使用できます:
create or replace function nvl (anyelement, anyelement)
returns anyelement language sql as $$
select coalesce($1, $2)
$$;
OracleのNVLとCoalesceの違い も参照してください。 。
このラッパーを使用できます:
create or replace function nvl (anyelement, anyelement)
returns anyelement language sql as $$
select coalesce($1, $2)
$$;
OracleのNVLとCoalesceの違い も参照してください。 。