SELECT `age` FROM `table_name` WHERE `age` REGEXP '^[^0-9]$'; 或者 SELECT `age` FROM `table_name` WHERE `age` NOT REGEXP '^[0-9]$';
或者