0

So I'm trying to write a fairly large query and I know I'm making a noob mistake. After googling for 2 hours I'm throwing the question out there hoping you can see my mistake. Here is what I'm doing using the query designer view:

field1 = Not Like "*x*,*y*,*z*,*w*" or is null
field2 = Not Like "*a*,*b*,*c*" or is null

on about 10 different fields all with slightly different criteria. I need to include any null values but it isn't working properly. Also, I believe because I'm entering "or is null" it's causing the designer view to repeat that command over and over again on every line of criteria.

4

1 回答 1

2

Have you tried:

field1 = Not Like "*x*,*y*,*z*,*w*" or field1 is null
field2 = Not Like "*a*,*b*,*c*" or field2 is null
于 2013-07-25T02:00:45.407 回答