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