Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My two tables are

Entry
event_id   competitor_id   place
101        101             1
101        102             2
101        201             3
101        301             4
102        201             2
103        201             3

second table lists prizes on offer for the events

Prize
event_id   place          money
101        1              120
101        2              60
101        3              30
102        1              10
102        2              5
102        3              2
103        1              100
103        2              60
103        3              40

From this I am looking to show all the information from the Entry table alongside the amount of money they won for their respected placing. If they failed to place in the money then a 0 will be displayed.

Any help would be appreciated.

share|improve this question
What is the criteria for "If they failed to place in the money"? – Lion May 3 '12 at 0:16
For example in this case, there is no record of a prize for 4th place in event 101. – coops737 May 3 '12 at 0:20
then for the 4th place, zero will be displayed as what OP wants. – JW 웃 May 3 '12 at 0:25

3 Answers

up vote 6 down vote accepted

try this:

SELECT  a.Event_ID, 
        a.Competitor_ID,
        a.Place,
        COALESCE(b.money, 0) as `Money`
FROM    entry a left join prize b
            on  (a.event_id = b.event_ID) AND
                (a.place = b.Place)

hope this helps.

EVENT_ID    COMPETITOR_ID   PLACE   MONEY
101           101            1      120
101           102            2       60
101           201            3       30
101           301            4        0   -- << this is what you're looking for
102           201            2        5
103           201            3       40
share|improve this answer
1  
This looks more like what is being asked for, to give a 0 value for competitors that received no money. – Mike Purcell May 3 '12 at 0:26
if i understood his question clearly, this will give answer to the OP. – JW 웃 May 3 '12 at 0:28
Indeed you did, good job. – Mike Purcell May 3 '12 at 2:28

Try this:

select e.*, coalesce(p.money, 0) money from entry e
left join prize p
on e.event_id = p.event_id and e.place = p.place

You can play with the fiddle here.

share|improve this answer
SELECT * FROM Entry NATURAL LEFT JOIN Prize;

If you absolutely want 0 instead of NULL for the "money" when no prize was won (but how can you differentiate between a prize of 0 and no prize?):

SELECT Entry.*, COALESCE(money, 0) AS money FROM Entry NATURAL LEFT JOIN Prize;

See them both on sqlfiddle.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.