gpt4 book ai didi

mysql - 编写没有组子查询的查询?

转载 作者:太空宇宙 更新时间:2023-11-03 12:35:30 26 4
gpt4 key购买 nike

根据我的理解,每次查看一行时都会调用子查询,在这种情况下,每一行都会被查看。

我如何重写这个查询?子查询只需要运行一次,但是当我必须删除组中只有 1 个条目的 ID(我希望组计数>1)时,我想不出如何选择 ID。

目的是获取与其他行大小相同的行列表

select id 
from file
where size in
(
select size from
(
select count(*) as c, size
from file
group by size
having c>1 and size>0
) as t
)

最佳答案

您可以只使用一个子查询而不是两个:

select id 
from file
where size in (
select size
from file
group by size
having count(*)>1 and size>0
)

但是如果你只想使用连接,你可以使用这样的东西:

select distinct file.id
from file inner join file file1 on file.size = file1.size
where file.size>0 and file.id <> file1.id

关于mysql - 编写没有组子查询的查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13439552/

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