oracle 查找a列中非数字的行

兄弟哪位知道,oracle 查找a列中非数字的行
最新回答
星星泡饭

2024-09-17 01:30:59

使用正则表达式

select * from test01 where not REGEXP_LIKE(value,'^([0-9]+)$')