I'm trying to exclude something from my results.
I'm joining 3 tables, 1 with movies, 1 with genres and 1 to combine these 2.
So the results give a row for each movie for each genre.
So If I have 2 movies with each 3 genre's I get 6 results.
Now I want to be able to say I don't want a movie with this specefic genre. If I do this by saying AND tblmoviegenre.ID <> genre.ID
I just get 1 row less, but the movie is still in the results, just without that one row for the specefic genre.
Does anyone know how to fix this?