
The intent being that I plan to run these once a month and post the results on the forum.
8 lines
313 B
SQL
8 lines
313 B
SQL
select ERA_NAME, count(*) as ERA_COUNT
|
|
from wesnothd_game_info
|
|
where YEAR(START_TIME) = YEAR(CURRENT_DATE - INTERVAL 1 MONTH)
|
|
and MONTH(START_TIME) = MONTH(CURRENT_DATE - INTERVAL 1 MONTH)
|
|
and END_TIME is not NULL
|
|
and TIMESTAMPDIFF(MINUTE, START_TIME, END_TIME) > 5
|
|
group by ERA_NAME
|
|
order by count(*) desc
|