Compare a string with itself.

John Sh

Active member
Local time
Tomorrow, 03:27
Joined
Feb 8, 2021
Messages
574
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