如果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;

相关文章

Java Oracle 结果集是Java语言中处理数据库查询结果的一种方...
Java AES和Oracle AES是现代加密技术中最常使用的两种AES加密...
Java是一种广泛应用的编程语言,具备可靠性、安全性、跨平台...
随着移动互联网的发展,抽奖活动成为了营销活动中不可或缺的...
Java和Oracle都是在计算机领域应用非常广泛的技术,他们经常...
Java 是一门非常流行的编程语言,它可以运行于各种操作系统上...