I am running a simple query that excludes a value in a particular column. This is a text column that can contain null values.
For example, the table might have two columns: a1 and a2 and have data like:
a1 a2
a x
a x
a x
b x
b x
b x
c x
c x
c x
s
sd
ss
When I run a query and set the criteria for field a1 as:
Not "c"
The query excludes records that are not equal to "c" but also excludes all records that are equal to null. I would expect the records where field a1 is null to be displayed.
Can someone explain why this occurs?
Thanks.
Thanks.
For example, the table might have two columns: a1 and a2 and have data like:
a1 a2
a x
a x
a x
b x
b x
b x
c x
c x
c x
s
sd
ss
When I run a query and set the criteria for field a1 as:
Not "c"
The query excludes records that are not equal to "c" but also excludes all records that are equal to null. I would expect the records where field a1 is null to be displayed.
Can someone explain why this occurs?
Thanks.
Thanks.