Niestety, w ten sposób nie można używać aliasów kolumn. Są dostępne dopiero po SELECT
oświadczenie jest przetwarzane. Można to jednak zrobić w podzapytaniu lub wspólnym wyrażeniu tabelowym (CTE). Oto proste podzapytanie:
SELECT player_name,
total_games,
total_points,
(total_points / total_games) AS average_points
FROM
(SELECT
users.username AS player_name,
COUNT(*) AS total_games,
SUM(games.points) AS total_points,
FROM games,
INNER JOIN users
ON games.player_id = users.id
GROUP BY games.player_id) as InnerQuery