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?