select *
from (select distinct translate(replace(id, '.', ''), '/1234567890', '/') col
from xxx)
where col is not null
oracle 查找不是纯数字的记录
最新推荐文章于 2024-04-17 17:05:55 发布
select *
from (select distinct translate(replace(id, '.', ''), '/1234567890', '/') col
from xxx)
where col is not null