Hello,
I am working on a query, It finds records which are in lower case from table.
eg.
richard
john
andy
The below query which I have designed, shows the required output...
but fields containing numeric & null values are also displayed, which i don't require.
--
SELECT * FROM `table`
WHERE (NAME COLLATE latin1_bin ) = lower(NAME);
--
Kindly Advice
Thanks