I\'m looking for an SQL query that gives me all rows where ColumnX contains any lowercase letter (e.g. \"1234aaaa5789\"). Same for uppercase.
for search all rows in lowercase
SELECT * FROM Test WHERE col1 LIKE '%[abcdefghijklmnopqrstuvwxyz]%' collate Latin1_General_CS_AS
Thanks Manesh Joseph