将 Oracle ApEx 集合连接到实际表
在 Oracle ApEx 中,是否可以将模式中的实际表加入到 Oracle ApEx 集合中,因为我在这样做时遇到了困难?
基本上有以下情况:
select c001, -- employee id from collection
c002,
c003 -- employee dept no from collection
from apex_collections,
emp
where emp.id = c001
and emp.deptno = c003;
以上可能吗还是我遗漏了什么?
Within Oracle ApEx is it possible to join an actual table in your schema to an Oracle ApEx Collection, as I am having trouble doing so?
Basically have the following scenario:
select c001, -- employee id from collection
c002,
c003 -- employee dept no from collection
from apex_collections,
emp
where emp.id = c001
and emp.deptno = c003;
Is the above possible or am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们可以将 apex 集合与我们的模式表连接起来..它会起作用..
we can join apex collection with our schema tables..it will work..