Oracle与PostgreSQL子查询有什么不同

49次阅读
没有评论

共计 4763 个字符,预计需要花费 12 分钟才能阅读完成。

本篇内容主要讲解“Oracle 与 PostgreSQL 子查询有什么不同”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让丸趣 TV 小编来带大家学习“Oracle 与 PostgreSQL 子查询有什么不同”吧!

准确的表达应该是在子查询的 having 条件中出现 agg 函数且依赖父查询的相关字段时,Oracle 支持而 PG 不支持。

Oracle
创建表,插入数据,执行查询,OK!

TEST-orcl@DESKTOP-V430TU3 drop table tbl1;
Table dropped.
TEST-orcl@DESKTOP-V430TU3 drop table tbl2;
Table dropped.
TEST-orcl@DESKTOP-V430TU3 drop table tbl3;
Table dropped.
TEST-orcl@DESKTOP-V430TU3 
TEST-orcl@DESKTOP-V430TU3 create table tbl1 (id int,c1 int,c2 int,c3 int);
Table created.
TEST-orcl@DESKTOP-V430TU3 create table tbl2 (id int,c1 int,c2 int,c3 int);
Table created.
TEST-orcl@DESKTOP-V430TU3 create table tbl3 (id int,c1 int,c2 int,c3 int);
Table created.
TEST-orcl@DESKTOP-V430TU3 
TEST-orcl@DESKTOP-V430TU3 insert into tbl1 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl1 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl1 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl1 values(2,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl1 values(2,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl1 values(3,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 
TEST-orcl@DESKTOP-V430TU3 insert into tbl2 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl2 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl2 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl2 values(2,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl2 values(2,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl2 values(3,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 
TEST-orcl@DESKTOP-V430TU3 truncate table tbl3;
Table truncated.
TEST-orcl@DESKTOP-V430TU3 insert into tbl3 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 insert into tbl3 values(1,1,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 
TEST-orcl@DESKTOP-V430TU3 commit;
Commit complete.
TEST-orcl@DESKTOP-V430TU3 
TEST-orcl@DESKTOP-V430TU3 truncate table tbl3;
Table truncated.
TEST-orcl@DESKTOP-V430TU3 insert into tbl3 values(1,2,1,1);
1 row created.
TEST-orcl@DESKTOP-V430TU3 
TEST-orcl@DESKTOP-V430TU3 select a.id,sum(a.c1) as sum_c1,sum(a.c2) as sum_c2
 2 from tbl1 a,tbl2 b
 3 where a.id = b.id
 4 and exists (select 1 from tbl3 c where c.id = a.id group by c.id having sum(c.c1)   sum(a.c1))
 5 group by a.id;
 ID SUM_C1 SUM_C2
---------- ---------- ----------
 1 9 9
TEST-orcl@DESKTOP-V430TU3

不过,就算 Oracle 支持这样的写法,也不建议这样来写,原因是 SQL 语义理解起来并不友好,难以理解。

PG
创建表,插入数据,执行查询,出错。

[pg12@localhost ~]$ psql
Expanded display is used automatically.
psql (12.1)
Type  help  for help.
[local:/data/run/pg12]:5120 pg12@testdb=# drop table tbl1;
s(1,1,1,1);
insert into tbl1 values(1,1,1,1);
insert into tbl2 select * from tbl1;
insert into tbl2 select * from tbl1;
insert into tbl3 select * from tbl1;
commit;
ERROR: table  tbl1  does not exist
[local:/data/run/pg12]:5120 pg12@testdb=# drop table tbl2;
ERROR: table  tbl2  does not exist
[local:/data/run/pg12]:5120 pg12@testdb=# drop table tbl3;
ERROR: table  tbl3  does not exist
[local:/data/run/pg12]:5120 pg12@testdb=# 
[local:/data/run/pg12]:5120 pg12@testdb=# create table tbl1 (id int,c1 int,c2 int,c3 int);
CREATE TABLE
[local:/data/run/pg12]:5120 pg12@testdb=# create table tbl2 (id int,c1 int,c2 int,c3 int);
CREATE TABLE
[local:/data/run/pg12]:5120 pg12@testdb=# create table tbl3 (id int,c1 int,c2 int,c3 int);
CREATE TABLE
[local:/data/run/pg12]:5120 pg12@testdb=# 
[local:/data/run/pg12]:5120 pg12@testdb=# insert into tbl1 values(1,1,1,1);
INSERT 0 1
[local:/data/run/pg12]:5120 pg12@testdb=# insert into tbl1 values(1,1,1,1);
INSERT 0 1
[local:/data/run/pg12]:5120 pg12@testdb=# insert into tbl1 values(1,1,1,1);
INSERT 0 1
[local:/data/run/pg12]:5120 pg12@testdb=# 
[local:/data/run/pg12]:5120 pg12@testdb=# insert into tbl2 select * from tbl1;
INSERT 0 3
[local:/data/run/pg12]:5120 pg12@testdb=# insert into tbl2 select * from tbl1;
INSERT 0 3
[local:/data/run/pg12]:5120 pg12@testdb=# 
[local:/data/run/pg12]:5120 pg12@testdb=# insert into tbl3 select * from tbl1;
INSERT 0 3
[local:/data/run/pg12]:5120 pg12@testdb=# 
[local:/data/run/pg12]:5120 pg12@testdb=# commit;
WARNING: there is no transaction in progress
COMMIT
[local:/data/run/pg12]:5120 pg12@testdb=# select a.id,sum(a.c1) as sum_c1,sum(a.c2) as sum_c2
pg12@testdb-# from tbl1 a,tbl2 b
pg12@testdb-# where a.id = b.id
pg12@testdb-# and exists (select 1 from tbl3 c where c.id = a.id group by c.id having sum(c.c1) = sum(a.c1))
pg12@testdb-# group by a.id;
ERROR: aggregate functions are not allowed in WHERE
LINE 4: ...ere c.id = a.id group by c.id having sum(c.c1) = sum(a.c1))
 ^
[local:/data/run/pg12]:5120 pg12@testdb=#

出现的错误是“aggregate functions are not allowed in WHERE”,但条件明明在 having 怎么报 WHERE 中出现 agg 函数呢?原因是 PG 认为条件 sum(c.c1)  = sum(a.c1) 中的 a.c1 出现在父查询中,该条件认为是 WHERE 中的条件。

到此,相信大家对“Oracle 与 PostgreSQL 子查询有什么不同”有了更深的了解,不妨来实际操作一番吧!这里是丸趣 TV 网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-26发表,共计4763字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)