select t.*, t.rowid from i_power t where trim(translate(t.content,'0123456789',' ')) is null
select t.*, t.rowid from i_power t where trim(translate(nvl(t.content,'x'),'0123456789',' ')) is null
本文共 261 字,大约阅读时间需要 1 分钟。
select t.*, t.rowid from i_power t where trim(translate(t.content,'0123456789',' ')) is null
select t.*, t.rowid from i_power t where trim(translate(nvl(t.content,'x'),'0123456789',' ')) is null
转载于:https://my.oschina.net/chwencong/blog/65297