gpt4 book ai didi

mysql - 选取某天MySQL数据库中的项目

转载 作者:行者123 更新时间:2023-11-29 05:36:52 26 4
gpt4 key购买 nike

我想使用 MySQL 数据库中的数据创建某一天的项目图表。我有问题

SELECT * FROM activities 
WHERE timestamp BETWEEN UNIX_TIMESTAMP() - 24 * 3600 * 7
AND UNIX_TIMESTAMP() - 24 * 3600 * 6

从 x 天前选择项目(其中 7 和 6 可以不同以选择日期),但由于某种原因它在我的数据库中返回一个空集。

最佳答案

尝试以下:

 SELECT * FROM activities
WHERE date(timestamp) between start_date
and DATE_SUB(start_date,interval x day))

start_date 替换为您的 startdate 并将 x 替换为 interval

关于mysql - 选取某天MySQL数据库中的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9880399/

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