Compare a string with itself. (1 Viewer)

John Sh

Member
Local time
Today, 20:34
Joined
Feb 8, 2021
Messages
410
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

Top Bottom