工作中遇到一个大表记录中有非法非数字字符,不想用正则语法去做,
用一条SQL语句查出来的方法如下:
select * from table where translate(col,'*0123456789','*') is not null
2023-07-18 22:28:10
工作中遇到一个大表记录中有非法非数字字符,不想用正则语法去做,
用一条SQL语句查出来的方法如下:
select * from table where translate(col,'*0123456789','*') is not null