Oracle双查询

发布于 2024-09-11 06:23:12 字数 237 浏览 5 评论 0原文

我有一个这样的查询:

SELECT X.Y( 'p1', 'p2', 'p3', 'p4', '100') 
  FROM dual

我知道什么是对偶,但这部分 XY( 'p1', 'p2', 'p3', 'p4', '100') 确实让我想知道。这个语法是什么意思?

XY 是表还是什么?

I have a query like this:

SELECT X.Y( 'p1', 'p2', 'p3', 'p4', '100') 
  FROM dual

I know what dual is but this part X.Y( 'p1', 'p2', 'p3', 'p4', '100') really makes me wonder. What does this syntaxis mean?

Are X and Y tables or what?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-09-18 06:23:12

好吧,我可以看到三种可能性:

  1. X 是一个模式,Y 是 X 模式中的一个函数。
  2. X 是一个包,要么具有公共同义词,要么位于当前模式中,Y 是该包中定义的函数。
  3. X 是一个类型,可以是公共同义词,也可以是当前模式中的类型,Y 是该类型中定义的函数。

SQL*Plus 命令 DESCRIBE XDESCRIBE XY 返回什么?

Well, I can see three possibilities:

  1. X is a schema, and Y is a function within X's schema.
  2. X is a package, either with a public synonym or in the current schema, and Y is a function defined in that package.
  3. X is a type, either with a public synonym or in the current schema, and Y is a function defined in the type.

What does the SQL*Plus command DESCRIBE X or DESCRIBE X.Y return?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文