如何从时间戳中获取最近 10 分钟的数据?
How to fetch data of the last 10 minutes from datestamp?
已删除,因为这无关紧要。
好的 - 如果我从你的评论中了解到现在有一个单独的推文 table,你想要 select 游戏结束前 10 分钟的推文数量。我不知道推文的名称 table,但类似这样的内容应该有效:
select COUNT(*) from tweets t
where t.tweet_date >
(select DATE_SUB(g.official_end, interval 10 minute)
from game g where g.game_id = t.game_id) and t.game_id = 10
已删除,因为这无关紧要。
好的 - 如果我从你的评论中了解到现在有一个单独的推文 table,你想要 select 游戏结束前 10 分钟的推文数量。我不知道推文的名称 table,但类似这样的内容应该有效:
select COUNT(*) from tweets t
where t.tweet_date >
(select DATE_SUB(g.official_end, interval 10 minute)
from game g where g.game_id = t.game_id) and t.game_id = 10