|
Re: Jaci's Annual FRC Datadump 2016
Quote:
Originally Posted by Ether
For all 3-alliance teams that actually played a match:
6138+6137+6208 = 18483 (blue)
11+56+41 = 108 (red)
|
Here is the SQL that gives the same answer:
sqlite> select a.team, b.team, c.team, max(a.team+b.team+c.team) from match_teams a join match_teams b on a.match=b.match join match_teams c on b.match = c.match where a.team <> b.team and a.team <> c.team and b.team <> c.team and a.alliance_color = b.alliance_color and b.alliance_color = c.alliance_color ;
6138|6137|6208|18483
sqlite> select a.team, b.team, c.team, min(a.team+b.team+c.team) from match_teams a join match_teams b on a.match=b.match join match_teams c on b.match = c.match where a.team <> b.team and a.team <> c.team and b.team <> c.team and a.alliance_color = b.alliance_color and b.alliance_color = c.alliance_color ;
41|11|56|108
__________________
John Vriezen
FRC, Mentor, Inspector #3184 2016- #4859 2015, #2530 2010-2014 FTC Mentor, Inspector #7152 2013-14
Last edited by jvriezen : 13-05-2016 at 16:43.
Reason: Corrected to simply show SQL.
|