Oracle创建函数失败

发布于 2024-10-27 14:19:00 字数 791 浏览 6 评论 0原文

有人可以告诉我为什么下面的函数编译失败吗?

CREATE or replace FUNCTION CONCAT_LIST
      (cur IN SYS_REFCURSOR, sep IN VARCHAR2) 
    RETURN  VARCHAR2
IS 
  ret VARCHAR2(32000); 
  tmp VARCHAR2(4000); 
BEGIN 
    --open cur;
    loop 
      fetch cur into tmp; 
      exit when cur%NOTFOUND;
      if ret is null then
       ret := tmp; 
      else 
        ret := ret || sep || tmp; 
      end if;
    end loop; 
    RETURN ret;
  END;

我收到的错误消息是

 PLS-00103: Encountered the symbol " " when expecting one of the following:
 <an identifier> <a double-quoted delimited-identifier> SELF_
 LONG_ double ref char time timestamp interval date binary
 national character nchar

can somebody tell me why the below function should fail compilation?

CREATE or replace FUNCTION CONCAT_LIST
      (cur IN SYS_REFCURSOR, sep IN VARCHAR2) 
    RETURN  VARCHAR2
IS 
  ret VARCHAR2(32000); 
  tmp VARCHAR2(4000); 
BEGIN 
    --open cur;
    loop 
      fetch cur into tmp; 
      exit when cur%NOTFOUND;
      if ret is null then
       ret := tmp; 
      else 
        ret := ret || sep || tmp; 
      end if;
    end loop; 
    RETURN ret;
  END;

The error message I get is

 PLS-00103: Encountered the symbol " " when expecting one of the following:
 <an identifier> <a double-quoted delimited-identifier> SELF_
 LONG_ double ref char time timestamp interval date binary
 national character nchar

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文