gpt4 book ai didi

mysql - 按月过滤数据

转载 作者:行者123 更新时间:2023-12-04 10:28:23 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





display month name instead of month number in mysql

(1 个回答)


去年关闭。




我正在使用 构建根据月份过滤数据的查询created_at 列,我当前的查询

查询:
SELECT id, title, body, created_at, from posts ORDER BY id DESC
现在,当 created_at 列打印时,它显示以下结果 2020-03-01 07:50:07 但我想打印月份名称,如 三、四月
应该如何实现

谢谢

最佳答案

查询:

SELECT id, title, body, MONTHNAME(created_at) from posts  ORDER BY id DESC

替换 created_at MONTHNAME(created_at)

MONTHNAME(col_name) 函数将显示月份名称

关于mysql - 按月过滤数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60530507/

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