Můžete použít tento obal:
create or replace function nvl (anyelement, anyelement)
returns anyelement language sql as $$
select coalesce($1, $2)
$$;
Viz také Rozdíly Oracle mezi NVL a Coalesce .
Můžete použít tento obal:
create or replace function nvl (anyelement, anyelement)
returns anyelement language sql as $$
select coalesce($1, $2)
$$;
Viz také Rozdíly Oracle mezi NVL a Coalesce .