方法一:
select *
from table
where trim(translate(column,'0123456789',' ')) is NULL;
方法二:
where like(column,'^[0-9]+[0-9]$');
参考https://www.cnblogs.com/2260827114com/p/7363428.html