【发布时间】:2015-01-24 00:28:08
【问题描述】:
此代码按预期工作,但我很长而且令人毛骨悚然。
select p.name, p.played, w.won, l.lost from
(select users.name, count(games.name) as played
from users
inner join games on games.player_1_id = users.id
where games.winner_id > 0
group by users.name
union
select users.name, count(games.name) as played
from users
inner join games on games.player_2_id = users.id
where games.winner_id > 0
group by users.name) as p
inner join
(select users.name, count(games.name) as won
from users
inner join games on games.player_1_id = users.id
where games.winner_id = users.id
group by users.name
union
select users.name, count(games.name) as won
from users
inner join games on games.player_2_id = users.id
where games.winner_id = users.id
group by users.name) as w on p.name = w.name
inner join
(select users.name, count(games.name) as lost
from users
inner join games on games.player_1_id = users.id
where games.winner_id != users.id
group by users.name
union
select users.name, count(games.name) as lost
from users
inner join games on games.player_2_id = users.id
where games.winner_id != users.id
group by users.name) as l on l.name = p.name
如您所见,它由 3 个用于检索的重复部分组成:
- 玩家姓名和他们玩的游戏数量
- 玩家姓名和他们赢得的游戏数量
- 玩家姓名和他们输掉的游戏数量
每一个也由两部分组成:
- 玩家姓名和他们作为玩家_1参与的游戏数量
- 玩家姓名和他们作为玩家_2参与的游戏数量
如何简化?
结果如下:
name | played | won | lost
---------------------------+--------+-----+------
player_a | 5 | 2 | 3
player_b | 3 | 2 | 1
player_c | 2 | 1 | 1
【问题讨论】:
-
你还没有运行 postgres 9.4 是吗?
-
@JoeLove,还没有,但感谢您提到聚合过滤器,我以后一定会考虑升级。
标签: sql postgresql aggregate-functions aggregate-filter