mysql order by sum,MySQL JOIN SUM和3个表

I have the following tables (Players, Events, Scores)

JfU6e.png

I would like a list of how many points each player has got in 2012.

I want the list to feature all of the players, even though some haven't played in 2012.

So in theory it should print:

Ola Hansen 6

Tove Svendson 0

Kari Pettersen 0

I tried:

SELECT *, sum(Points) as Points FROM Players

LEFT OUTER JOIN Scores ON P_Id=Player

LEFT OUTER JOIN Events ON Event=E_Id AND Year='2012'

GROUP by P_Id ORDER by Points DESC

But that counts all the points from all the years.

解决方案

Scores and events need to be inner-joined before outer-joining them to players.

We could use a subquery or parentheses to force this particular join "precedence", but it's nicer to just use the order of JOINs in the SQL text, and then carefully "orient" the last JOIN to players (RIGHT in this case).

The COALESCE is just for converting NULLs to 0s.

SELECT

P_Id, LastName, FirstName, COALESCE(SUM(Points), 0) TotalPoints

FROM

Scores

JOIN Events

ON Event = E_Id AND Year = 2012

RIGHT JOIN Players

ON P_Id = Player

GROUP BY

P_Id, LastName, FirstName

ORDER BY

TotalPoints DESC;

This produces:

P_ID LASTNAME FIRSTNAME TOTALPOINTS

1 Hansen Ola 6

2 Svendson Tove 0

3 Pettersen Kari 0

You can play with it in this SQL Fiddle.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值