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.
Why is it so?
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?