I want to exclude a certain row from an MYSQL query.
SELECT * FROM imdb WHERE genres LIKE 'Adventure' ORDER BY id DESC LIMIT 10
It's for a movie website, so I retrive similar Adventures movie, but this includes the current movie.
So I need something like this:
Select the movies like Adventures, but exclude this id: 1, yet, results 10 movies.