I've been tying for hours now to get a particular result and havn't found any answer on the web - and as I'm not an SQL expert at ALL...
So I have 3 tables: user (id, name...), cars(id, type, color, engine power...) and an intermediary table to save all the scores users gave to the car: scores(id, user_id, car_id, score).
I'm trying to find a querry that could return for one particular user, all the cars that he hasn't rated yet. I've tryed the following but it returns null:

$q=mysql_query("SELECT * FROM cars LEFT OUTER JOIN scores ON cars.id = scores.car_id WHERE scores.user_id != ('".$userId."')");

Does someone have a clue?

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted
SELECT
  *
FROM
  cars
WHERE
  NOT EXISTS (SELECT 1 FROM scores WHERE car_id = cars.id AND user_id = ?)

where ? is the ID of that particular user.

A composite index in scores over (car_id, user_id) is useful here.

link|improve this answer
Wow, it works perfect, thanks a milion! I'll check out the composite index you talked about, never used that before... – Xavier Aug 27 '11 at 18:47
feedback

You can use your code with small modification:

SELECT * FROM cars 
LEFT OUTER JOIN scores ON cars.id = scores.car_id and scores.user_id=".$userId."
WHERE scores.id IS NULL
link|improve this answer
1  
+1 That's the alternative. IMHO not as expressive as NOT EXISTS, though. – Tomalak Aug 27 '11 at 19:08
It is not an alternative, this query is totally incorrect. – Zapadlo Aug 27 '11 at 20:30
@Zapadlo Could you explain your comment? What is totally:) incorrect in this query? I think before posting comment like this you should read more about sql and left join:) – Andrej L Aug 27 '11 at 20:45
WHERE cars.id = ".$userId." – Zapadlo Aug 27 '11 at 20:55
@Zapadlo Agree, I have mixed cars and scores. Edited. Thanks – Andrej L Aug 27 '11 at 21:06
show 2 more comments
feedback
SELECT * FROM
car c
WHERE c.id NOT IN (
    SELECT s.car_id
    FROM score s, user u
    WHERE u.id = s.user_id
        AND u.id = ?
)
link|improve this answer
Do you really need the user table? – ypercube Aug 27 '11 at 21:26
No. [12 more to go...] – Zapadlo Aug 27 '11 at 21:32
feedback

Your Answer

 
or
required, but never shown

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