gpt4 book ai didi

mysql - 带有 where 和 distinct 的 SQL 查询

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

我有以下 sql 查询,它从特定用户的时间戳值列中获取唯一日期。我想要取回的是特定用户每个唯一日期的时间戳值计数。

 select distinct DAY(time) from users_has_activities
where usersID = 47;

最佳答案

使用带有 GROUP BY 的计数 COUNT(column_name) 应该可以达到目的:

SELECT DAY(time), COUNT(DAY(time))
FROM users_has_activities
WHERE usersID = 47
GROUP BY DAY(time);

关于mysql - 带有 where 和 distinct 的 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36602045/

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