From: Ant Zucaro Date: Tue, 20 Mar 2012 12:53:04 +0000 (-0400) Subject: Damn you, pgadmin! X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=67f822c700be89b077d496634e10ec82a3a77de8;p=xonotic%2Fxonstatdb.git Damn you, pgadmin! --- diff --git a/scripts/dashboard_report.sql b/scripts/dashboard_report.sql index 4333f63..7c64242 100755 --- a/scripts/dashboard_report.sql +++ b/scripts/dashboard_report.sql @@ -1,45 +1,43 @@ --- Yo dawg, I heard you liked stats... - --- count of games for the given year -select date_part('month', create_dt), count(*) -from games -where date_part('year', create_dt) = 2012 -group by date_part('month', create_dt) -order by date_part('month', create_dt); - --- count of game types for the given year -select game_type_cd, count(*) -from games -where date_part('year', create_dt) = 2012 -group by game_type_cd -order by count(*) desc; - --- count of unique players playing in the given month -select date_part('month', create_dt), count(distinct player_id) -from player_game_stats -where date_part('year', create_dt) = 2012 -group by date_part('month', create_dt) -order by date_part('month', create_dt); - --- count of servers with the most games -select servers.name, count(*) -from servers, games -where servers.server_id = games.server_id -and date_part('year', games.create_dt) = 2012 -group by servers.name -order by count(*) desc; - --- count of maps with the most games -select maps.name, count(*) -from games, maps -where maps.map_id = games.map_id -and date_part('year', games.create_dt) = 2012 -group by maps.name -order by count(*) desc; - --- new players by month -select date_part('month', create_dt), count(*) -from players -where date_part('year', create_dt) = 2012 -group by date_part('month', create_dt) -order by date_part('month', create_dt); +-- count of games for the given year +select date_part('month', create_dt), count(*) +from games +where date_part('year', create_dt) = 2012 +group by date_part('month', create_dt) +order by date_part('month', create_dt); + +-- count of game types for the given year +select game_type_cd, count(*) +from games +where date_part('year', create_dt) = 2012 +group by game_type_cd +order by count(*) desc; + +-- count of unique players playing in the given month +select date_part('month', create_dt), count(distinct player_id) +from player_game_stats +where date_part('year', create_dt) = 2012 +group by date_part('month', create_dt) +order by date_part('month', create_dt); + +-- count of servers with the most games +select servers.name, count(*) +from servers, games +where servers.server_id = games.server_id +and date_part('year', games.create_dt) = 2012 +group by servers.name +order by count(*) desc; + +-- count of maps with the most games +select maps.name, count(*) +from games, maps +where maps.map_id = games.map_id +and date_part('year', games.create_dt) = 2012 +group by maps.name +order by count(*) desc; + +-- new players by month +select date_part('month', create_dt), count(*) +from players +where date_part('year', create_dt) = 2012 +group by date_part('month', create_dt) +order by date_part('month', create_dt);