Hi
what is wrong with this sql
the result should return records of Series with NULL rating if the rating table does not have the matching series_seriesid
what is wrong with this sql
Code:
SELECT series.* FROM series LEFT JOIN (select rating.* from rating WHERE rating.USER_USERID=51) ON series.SERIESID=rating.SERIES_SERIESID WHERE series.SERIESID=1
Comment