我的表中有一个时间戳值,它设置为更新当前时间戳。
当用户进行 x 工作时,它会自行更新。
我想计算在过去 30 分钟内有多少用户做了 x 工作。我需要什么 mysql 查询?
您应该在查询中使用count聚合函数
select
count(timestampColumnName)
from
yourtable
where
timestampColumnName>date_sub(now(), interval 30 minute)
// and any other conditions as needed