Oracle VPD如何引用表

发布于 2024-09-28 06:44:32 字数 403 浏览 4 评论 0原文

我正在努力解决以下问题。我想使用 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 技术交流群。

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

发布评论

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

评论(1

巡山小妖精 2024-10-05 06:44:32

我认为你需要使用 NOT IN:

(name, datecol) not in (select name, datecol from table2)

I think you will need to use NOT IN:

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