例如:说,我有 2 个模式和 4 个表创建为
create table a.foo(
id integer primary key,
val integer);
create table b.main(
id serial primary key,
val integer references a.foo(id));
create table b.foo(
k integer primary key references b.main(id),
v timestamp with time zone);
create table b.bar(
k integer primary key references b.main(id),
v timestamp with time zone);
我正在寻找的伪代码:选择所有引用 b.main.id 的表;
结果如下所示:
b.main.id | b.main.val | b.foo.k | b.foo.v | b.bar.k | b.bar.v
1 1 1 TimeStamp 1 TimeStamp
2 1 2 .... 2 ....
现在我已经将此查询实现为:
select * from b.main,
(select *
from b.foo,
(select * from b.bar where b.bar.v > somedate) as morebar
where b.bar.k = b.foo.k) as morefoo
where b.main.id = b.foo.k;
回到问题。Postgres 中是否有允许我们对所有引用主键的表执行选择的功能?就我而言,所有引用 b.main.id 的表。
我已经搜索了 Postgresql 文档,但还没有找到我要找的东西。建议?