I have the following table:
ID | JobID | Data | ResultType
---------------------------------
1 | 12345 | XXXX | 0
2 | 12345 | YYYY | 1
3 | 23456 | AAAA | 0
4 | 23456 | BBBB | 1
5 | 34567 | FOOB | 0
6 | 45678 | BARB | 0
Now I need to build a query that delivers all JobIDs where there is no entry with a ResultType = 1
EDIT1:
So at the end, I want to result that delivers only JobIDs 34567 and 45678, because there is no record with a ResultType = 1 for those JobIDs.
Can someone point me in the right direction?
Another way (not tested):