I\'m looking for an SQL query that gives me all rows where ColumnX contains any lowercase letter (e.g. \"1234aaaa5789\"). Same for uppercase.
mysql> SELECT '1234aaaa578' REGEXP '^[a-z]';