I need to locate rows in a database table that have a field with an upper case value.
E.g.: select * from Cust where Surname like \'COnTAiNS UpPERcASE VaLUe
Another way
SELECT * FROM Cust WHERE Surname NOT LIKE '%[^A-Z]%' COLLATE Latin1_General_BIN