gpt4 book ai didi

sql - 合并多个 oracle 查询以产生一个结果

转载 作者:行者123 更新时间:2023-12-04 16:55:48 25 4
gpt4 key购买 nike

是否可以将以下查询作为一个查询执行?

[代码]

select count(*) from tableA;
select count(*) from tableB;
select count(*) from tableC;
select count(*) from tableD;

[/代码]

IE。结果是这样的
|TablA|TableB|TableC|TableD|
|50 |300 |30 |9|

谢谢

最佳答案

select * from
(select count(*) from tableA),
(select count(*) from tableB),
(select count(*) from tableC),
(select count(*) from tableD);

关于sql - 合并多个 oracle 查询以产生一个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5899562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com