Compare a string with itself.

John Sh

Member
Local time
Today, 17:36
Joined
Feb 8, 2021
Messages
508
I have a table where some of the entries start with a lower case character.
I need to isolate those entries.
If I run the following query it returns nothing.
If I change "<>" to "=" it returns everything but the required entries.

Code:
SELECT Taxon.family, Taxon.genus
FROM Taxon
WHERE (((Taxon.genus)<>LCase([taxon].[genus])));

Why is it so?
 

Users who are viewing this thread

Back
Top Bottom