I want to find all movies without age rating (Rating G) with "Deleted Scenes" as Special Feature in the sakila db. My code looks like this:
SELECT *
FROM film f
WHERE rating = "G" AND special_features IN ('Deleted Scenes')
;
The problem is in the special_features
column because it does not only contain Deleted Scenes but also e.g. 'Making of, Deleted Scenes,..', so the equal sign does not work for deleted scenes.
I tried IN()
but it gives me the same answer as the equal sign case.
Can someone help me?