gpt4 book ai didi

mysql查询当前月份

转载 作者:太空宇宙 更新时间:2023-11-03 11:16:48 24 4
gpt4 key购买 nike

$month = (int)$_GET['month']; //201012

table
----------------------
id date
1 1292376532
2 1292376532
3 1292376532

如何从表中查询201012的数据?谢谢你!

最佳答案

SELECT *
FROM `table`
WHERE DATE_FORMAT(FROM_UNIXTIME(`date`), '%Y%m') = '201012'

但此查询将执行表全扫描。

关于mysql查询当前月份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4543443/

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