Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Komplizierte dynamische Anordnung der Fußballliga in MySQL?

Gehen wir Schritt für Schritt vor:

Wählen Sie die gewonnenen Spiele zu Hause und den Punktestand zu Hause aus:

   SELECT COUNT(*) as wins, SUM(G.home_score) as score FROM games G WHERE 
      G.team_id = T.team_id #See 3. query and you'll understand
      G.home_score > away_score

Nennen wir dieses Ergebnis HOME_GAMES.

Wählen Sie die gewonnenen Spiele und die Punktzahl der Auswärtsspiele aus:

SELECT COUNT(*) as wins, SUM(G.away_score) as score FROM games G
WHERE 
  G.team_id = T.team_id #See 3. query and you'll understand
  G.away_score > G.home_score

Nennen wir dieses Ergebnis AWAY_GAMES.

Wählen Sie die Gesamtzahl der gewonnenen Spiele und die Gesamtpunktzahl aus:

   SELECT (A.wins + H.wins) AS total_wins, (A.score + H.score) AS total_score FROM
   (AWAY_GAMES) AS A, (HOME_GAMES) AS H, teams T 
   ORDER BY total_wins, total_score

==> Setzen Sie alles zusammen, indem Sie AWAY_GAMES und HOME_GAMES ersetzen:

SELECT (A.wins + H.wins) AS total_wins, (A.score + H.score) AS total_score FROM 
  (SELECT COUNT(*) as wins, SUM(G.away_score) as score FROM games G
   WHERE 
     G.team_id = T.team_id #See 3. and you'll understand
     G.away_score > G.home_score) AS A, 

   (SELECT COUNT(*) as wins, SUM(G.home_score) as score FROM games G 
   WHERE 
      G.team_id = T.team_id #See 3. and you'll understand
      G.home_score > away_score) AS H, 

   teams T
   ORDER BY total_wins, total_score