You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ibihf/migrations/20230328002755_add_stats_pr...

30 lines
586 B

-- Add up migration script here
CREATE OR REPLACE FUNCTION player_stats_overview_all() RETURNS VOID
LANGUAGE SQL
AS $$
SELECT
(
SELECT COUNT(id)
FROM shots
WHERE shooter=players.id
AND goal=true
) AS goals,
(
SELECT COUNT(id)
FROM shots
WHERE assistant=players.id
AND goal=true
) AS assists,
(
SELECT COUNT(id)
FROM shots
WHERE assistant=players.id
OR shooter=players.id
) AS points,
players.name AS player_name
FROM players
ORDER BY
points DESC,
players.name;
$$;