I wasn't sure what to title this question, so I apologize if the title is misleading.
I have two columns in a table MovieID
and Format
(I have more, but these are the ones i am focusing on.
There are two types of values in the 'Format' column: 'DVD' and 'Blu-ray'. I want to select movies that ONLY have the DVD format. Note that there are multiple movies that have the Blu-ray and DVD format, I do not want to display these values. See the Fiddle below for a sample of my data. Thank you!!!
MovieID | Format
-----------------
1000 DVD
1000 DVD
1000 Blu-ray
1001 DVD
1001 DVD
1002 DVD
1003 DVD
1003 Blu-ray
1004 DVD
I WANT TO OUTPUT
MovieID
------------
1001
1002
1004