gpt4 book ai didi

mysql问题left join and from_unixtime

转载 作者:行者123 更新时间:2023-11-30 23:41:43 25 4
gpt4 key购买 nike

我有这个

SELECT COUNT(1) cnt, a.auther_id
FROM `posts` a
LEFT JOIN users u ON a.auther_id = u.id
GROUP BY a.auther_id
ORDER BY cnt DESC
LIMIT 20

它工作正常,但现在我想要从最后一天内选择帖子。我试着用

    WHERE from_unixtime(post_time) >= SUBDATE(NOW(),1) 

但是没有用。有人知道为什么吗?

最佳答案

这可能有效:

WHERE FROM_UNIXTIME(post_time) >= SUBDATE(NOW(), INTERVAL 1 DAY)

关于mysql问题left join and from_unixtime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2463303/

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