I'm currently using the AND operator in a query. see below
WHERE TYPE <> '1' AND TYPE <> '2'
I need to add a 3rd and 4th AND operator. I believe the AND operator only works if the first condition AND the second condition are true
this is what I'm looking for
WHERE TYPE <> '1A' AND TYPE <> '2Z' AND TYPE <> 'RR' AND TYPE <> 'AD'
I'm basically trying to exclude those Types in my returned results.
any help would be appreciated
WHERE TYPE <> '1' AND TYPE <> '2'
I need to add a 3rd and 4th AND operator. I believe the AND operator only works if the first condition AND the second condition are true
this is what I'm looking for
WHERE TYPE <> '1A' AND TYPE <> '2Z' AND TYPE <> 'RR' AND TYPE <> 'AD'
I'm basically trying to exclude those Types in my returned results.
any help would be appreciated