2011-03-11 93 views

回答

3

试试这个:

where bar_status like '%[^0-9]%' 
1

尝试(我不能测试它)

select * from XXX_ACCOUNTS_20110309 p 
where not regexp_like (bar_status,'[[:digit:]]+'); 

select * from XXX_ACCOUNTS_20110309 p 
where not regexp_like (bar_status,'^[[:digit:]]+$'); 
+0

我想多了一些其他干啥。 – 2011-03-11 12:39:35

+0

@Suresh添加了NOT关键字 – bluish 2011-03-11 12:40:55

相关问题