Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So erhalten Sie ein Ergebnis basierend auf einem 10-Minuten-Intervall in MySQL

select destination , count(id) from your_table
where MINUTE(time)>= MINUTE(now())-10 and MINUTE(time)< minute(now()) 
group by destination 
LIMIT 10