Oracle VPD如何引用表
我正在努力解决以下问题。我想使用 Oracle VPD 限制对表的访问。在 select 策略函数返回的 where 子句中,我需要在子查询中引用表,如下所示:(
select * from Table t1
where not exists (select 1 from Table t2 where t2.name=t1.name and t2.date=t1.date)
除了说明问题之外,该示例没有多大意义)
我无法控制询问。
select * from Table t1
该表可以指定任何别名,也可以不指定任何别名。因此我不知道如何在 where 子句中引用该表。 有办法解决这个问题吗?
(甲骨文10GR2)
I'm struggling with the following problem. I want to restrict access to a table using Oracle VPD. In the where clause that the select policy function returns I need a reference to the table in a subquery as follows:
select * from Table t1
where not exists (select 1 from Table t2 where t2.name=t1.name and t2.date=t1.date)
(The example doesn't make a lot of sense except to illustrate the problem)
I have no control over the select part of the query.
select * from Table t1
The table can be given any alias or none at all. So therefore I have no idea how to reference the table in the where clause.
Is there a way to get around this?
(Oracle 10GR2)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你需要使用 NOT IN:
I think you will need to use NOT IN: