How to use BOOLEAN type in SELECT statement

后端 未结 10 1344
鱼传尺愫
鱼传尺愫 2020-11-29 01:43

I have a PL/SQL function with BOOLEAN in parameter:

function get_something(name in varchar2, ignore_notfound in boolean);

This function is

10条回答
  •  感情败类
    2020-11-29 02:32

    PL/SQL is complaining that TRUE is not a valid identifier, or variable. Set up a local variable, set it to TRUE, and pass it into the get_something function.

提交回复
热议问题