, .
, LOWER(), LOWER().
If you want to make sure that all of the following characters are lowercase, you can use LOWER (SUBSTRING (word FROM 2))
SELECT title
FROM [TABLE_NAME]
WHERE (SUBSTRING(title, 1, 1) COLLATE latin1_bin) = LOWER(SUBSTRING(title, 1, 1))
AND (SUBSTRING(title, 2, 1) COLLATE latin1_bin ) = LOWER(SUBSTRING(title, 2, 1))
source
share