gpt4 book ai didi

php - 我如何在 mysql 中编写 Group By 查询日期时间字段

转载 作者:可可西里 更新时间:2023-11-01 07:32:15 25 4
gpt4 key购买 nike

我只需要根据表中的日期时间字段中没有时间的日期进行分组。 friend 们,我该怎么办?

这是我的表字段,

enter image description here

我的 Mysql 查询是,

select *,count(ord_number) as ord from tbl_order_details inner join tbl_users on tbl_users.user_id=tbl_order_details.user_id  where 1=1 group by ord_date order by ord asc

最佳答案

您可以在 DATE() 之前完成

示例 -

group by DATE(ord_date)

试试这个

select *,count(ord_number) as ord from tbl_order_details inner join tbl_users on tbl_users.user_id=tbl_order_details.user_id  where 1=1 group by DATE(ord_date) order by ord asc

关于php - 我如何在 mysql 中编写 Group By 查询日期时间字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40435256/

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