If I have multiple records I do NOT want to include in my query, it works fine with using (field='A' or field='B') to not include any records with values A or B. However, if I only need to include records for everything BUT 3 different values, how does that work? I've tried with the same syntax, but it's ignoring it.
This is what I have at the end:
and (left(d.glacct,4)<>'3670' or left(d.glacct,4)<>'2145' or left(d.glacct,4)<>'2070')
There are too many possible values to use the equal sign.
This is what I have at the end:
and (left(d.glacct,4)<>'3670' or left(d.glacct,4)<>'2145' or left(d.glacct,4)<>'2070')
There are too many possible values to use the equal sign.