I\'m trying to select all rows that contain only alphanumeric characters in MySQL using:
SELECT * FROM table WHERE column REGEXP \'[A-Za-z0-9]\';
Try this:
REGEXP '^[a-z0-9]+$'
As regexp is not case sensitive except for binary fields.