G
Guest
What does this expression do in the query? Thanks
BLANK-C" Or Is Null
BLANK-C" Or Is Null
Douglas J. Steele said:If that's been typed into the Criteria cell under a field in the graphical
query builder (and assuming you meant "BLANK-C" Or Is Null), then it's going
to return all rows where that field equals BLANK-C (or blank-c or Blank-C
or..., since Access isn't case sensitive), as well as all rows where no
value has been provided for that field.
In SQL, it equates to
WHERE Field1 = "BLANK-C" OR Field1 IS NULL