0
In the Mysql you need to "explain" how the grouping will be; I believe the most practical way is to define the date format in the select and using in group by country (link reference):
SELECT date_format(hora,'%Y-%m-%d %H-%i'), count(*)
FROM tabela
GROUP BY 1
https://stackoverflow.com/a/25599108/4551469
– rLinhares
caiocafardo, explain how you want the result to be because I’m thinking you want to make a ORDER BY. <--Link with example
– Augusto Vasques