I want to run a mysql query to select all rows from a table films where the value of the title column does not exist anywhere in all the values of anot
films
title
Another option using an outer join
SELECT f.* FROM films f LEFT OUTER JOIN films ff ON f.title = ff.collection WHERE ff.collection IS NULL