Bạn có thể sử dụng trình bao bọc này:
create or replace function nvl (anyelement, anyelement)
returns anyelement language sql as $$
select coalesce($1, $2)
$$;
Xem thêm Sự khác biệt của Oracle giữa NVL và Coalesce .
Bạn có thể sử dụng trình bao bọc này:
create or replace function nvl (anyelement, anyelement)
returns anyelement language sql as $$
select coalesce($1, $2)
$$;
Xem thêm Sự khác biệt của Oracle giữa NVL và Coalesce .