微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如果EXISTS条件不适用于PLSQL

当条件为TRUE时,我尝试打印TEXT。选择代码完全正常工作。当我只运行选择代码显示403值。但是当条件存在时,我必须打印一些文本。以下代码有什么问题?
BEGIN
IF EXISTS(
SELECT CE.S_REGNO FROM
COURSEOFFERING CO
JOIN CO_ENROLMENT CE
  ON CE.CO_ID = CO.CO_ID
WHERE CE.S_REGNO=403 AND CE.COE_COMPLETIONSTATUS = 'C' AND CO.C_ID = 803
)
THEN
    DBMS_OUTPUT.put_line('YES YOU CAN');
END;

以下是错误报告:

Error report:
ORA-06550: line 5,column 1:
pls-00103: Encountered the symbol "JOIN" when expecting one of the following:

   ),with group having intersect minus start union where
   connect
06550. 00000 -  "line %s,column %s:\n%s"
*Cause:    Usually a PL/sql compilation error.
*Action:
IF EXISTS()在语义上不正确。 EXISTS条件只能在sql语句中使用。所以你可以重写你的pl / sql块,如下所示:
declare
  l_exst number(1);
begin
  select case 
           when exists(select ce.s_regno 
                         from courSEOffering co
                         join co_enrolment ce
                           on ce.co_id = co.co_id
                        where ce.s_regno=403 
                          and ce.coe_completionstatus = 'C' 
                          and ce.c_id = 803
                          and rownum = 1
                        )
           then 1
           else 0
         end  into l_exst
  from dual;

  if l_exst = 1 
  then
    DBMS_OUTPUT.put_line('YES YOU CAN');
  else
    DBMS_OUTPUT.put_line('YOU CANNOT'); 
  end if;
end;

或者你可以简单地使用count函数来确定查询返回的行数,而rownum = 1谓词 – 你只需要知道一条记录是否存在:

declare
  l_exst number;
begin
   select count(*) 
     into l_exst
     from courSEOffering co
          join co_enrolment ce
            on ce.co_id = co.co_id
    where ce.s_regno=403 
      and ce.coe_completionstatus = 'C' 
      and ce.c_id = 803
      and rownum = 1;

  if l_exst = 0
  then
    DBMS_OUTPUT.put_line('YOU CANNOT');
  else
    DBMS_OUTPUT.put_line('YES YOU CAN');
  end if;
end;

原文地址:/oracle/205982.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐