在另一个存储过程中定义 Oracle 过程的语法是什么?
经过多次 Google 和 SO 搜索,我无法找到这个简单问题的明确答案:
如何在另一个过程中定义要使用的过程?
我知道有嵌套块和嵌套过程,但我还没有看到我想要的确切语法。 IE
create or replace
PROCEDURE TOP_PROCEDURE
(...)
IS
-- nested procedure here?
BEGIN
NULL;
END;
After many Google and SO searches, I cannot find a definitive answer to this simple question:
How can I define a procedure inside of another procedure to use?
I know that there are nested blocks and nested procedures, but I haven't seen the exact syntax for what I want. i.e.
create or replace
PROCEDURE TOP_PROCEDURE
(...)
IS
-- nested procedure here?
BEGIN
NULL;
END;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本地过程必须在其他任何内容(例如变量)之后声明。
Local procedures must be declared after anything else (e.g. variables).