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 Sql
SELECT * FROM tablename WHERE tablecolumnname LIKE '%[a-z]%';