Oracle - 处理 IF THEN ELSE 语句上的空结果集
当变量赋值产生于空结果集时,哪个 IF 条件应该是?
例子:
CREATE OR REPLACE Function get_values
( chv_input IN varchar2 )
RETURN varchar2
IS
chv_output varchar2(100);
BEGIN
select 'value'
into chv_output
from dual where 1=2;
IF chv_output is null THEN --this condition is not working
chv_output := 'null';
ELSE
chv_output := 'not null';
END IF;
RETURN chv_output;
END;
--select 1, get_values('112') from dual
which should be the IF condition when the variable assignation results from an empty resultset?
Example:
CREATE OR REPLACE Function get_values
( chv_input IN varchar2 )
RETURN varchar2
IS
chv_output varchar2(100);
BEGIN
select 'value'
into chv_output
from dual where 1=2;
IF chv_output is null THEN --this condition is not working
chv_output := 'null';
ELSE
chv_output := 'not null';
END IF;
RETURN chv_output;
END;
--select 1, get_values('112') from dual
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this instead: