From: antzucaro Date: Sat, 17 Aug 2013 04:12:14 +0000 (-0400) Subject: Add Elo rot analysis query. X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonstatdb.git;a=commitdiff_plain;h=0a9d4c559df8f94a0ad5d2177d654f5bfb6bfaa5 Add Elo rot analysis query. --- diff --git a/queries/show_elo_rot.sql b/queries/show_elo_rot.sql new file mode 100644 index 0000000..eccbe6d --- /dev/null +++ b/queries/show_elo_rot.sql @@ -0,0 +1,13 @@ +select + player_id, + game_type_cd, + elo current_elo, + update_dt last_update_dt, + (current_date - (update_dt::date)) number_of_days, + (current_date - (update_dt::date))-30 number_of_days_past_30, + (current_date - (update_dt::date)-31)/7 penalty, + greatest(100, elo - ((current_date - (update_dt::date)-31)/7)) new_elo +from player_elos +where + update_dt < (current_timestamp at time zone 'UTC' - interval '30 days') + and elo != 100;