Search notes:

OWA_UTIL.ITE

declare
    txt_1   varchar2(20) := 'hello';
    txt_2   varchar2(20) := 'world';
begin
    dbms_output.put_line(
        owa_util.ite(txt_1 = txt_2, 'equal', 'different')
    );
end;
/

See also

owa_util

Index