gpt4 book ai didi

mysql - MySQL 中函数 'count(*)' 返回的限制(截止)数

转载 作者:行者123 更新时间:2023-11-29 18:27:18 26 4
gpt4 key购买 nike

当我在 MySQL 中尝试这个时:

select make,count(*) as num from TABLE where num > 100 group by make

我得到:

Error Code: 1054, SQL State: 42S22]  Unknown column 'num' in 'where clause'

有没有办法限制count(*)?

最佳答案

您不能将列别名放在 WHERE 子句中。使用派生表代替:

select make, num
from
(
select make,count(*) as num from TABLE group by make
) dt
where num > 100

关于mysql - MySQL 中函数 'count(*)' 返回的限制(截止)数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46061007/

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