Skip to content
Advertisement

Aggregate columns with additional (distinct) filters

This code works as expected, but I it’s long and creepy.

As you can see, it consists of 3 repetitive parts for retrieving:

  • player name and the amount of games they played
  • player name and the amount of games they won
  • player name and the amount of games they lost

And each of those also consists of 2 parts:

  • player name and the amount of games in which they participated as player_1
  • player name and the amount of games in which they participated as player_2

How could this be simplified?

The result looks like so:

Advertisement

Answer

The standard-SQL aggregate FILTER clause in Postgres 9.4 or newer is shorter and faster:

In Postgres 9.3 (or any version) this is still shorter and faster than nested sub-selects or CASE expressions:

See:

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement