Attention Jet SQL experts,
I am looking for all rows in my_table where fld2 does not contain a comma. I have discovered that the following two SQL statements return a different set of rows using an Access 2000 query:
SELECT fld1 FROM my_table
WHERE not (((fld2) Like "*,*"
and
SELECT fld1 FROM my_table
WHERE (((fld2) not Like "*,*"
I would have expected them to be logically equivalent. Has anyone else experienced this, or can you please help me understand this? Thanks in advance for your help.
I am looking for all rows in my_table where fld2 does not contain a comma. I have discovered that the following two SQL statements return a different set of rows using an Access 2000 query:
SELECT fld1 FROM my_table
WHERE not (((fld2) Like "*,*"
and
SELECT fld1 FROM my_table
WHERE (((fld2) not Like "*,*"
I would have expected them to be logically equivalent. Has anyone else experienced this, or can you please help me understand this? Thanks in advance for your help.