
The intent being that I plan to run these once a month and post the results on the forum.
9 lines
326 B
SQL
9 lines
326 B
SQL
select MAP_NAME, count(*) as OOS_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
|
|
and OOS = 1
|
|
group by MAP_NAME
|
|
order by count(*) desc
|