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
select count(*) from table where cast(col as double) is null;