I’ve got a table which contains the following columns: ID, Condition 1, Condition 2.
I’d like to select all rows where condition 1 AND condition 2 is not a specific word. let’s say the word is “no”.
So, I want to select all rows where condition 1 and condition 2 are not “no” and all rows where there is a “no” but only in one of the conditions.
Any help is appreciated.
to get rows where both conditions are NOT ‘no’
to get rows where either one condition or the other (but not both) is NOT ‘no’
To do both sets at the same time:
ETA extension of query returns the row with id=1 IF that row does NOT have ‘no’ in Condition1 or 2: