摘要: 原文:http://desert3.iteye.com/blog/811007-- 不是数字 select * from dual where not REGEXP_LIKE('1不是数字1', '^[0-9]+\.{0,1}[0-9]*$') -- 是数字 select * from dual where REGEXP_LIKE('1.1', '^[0-9]+\.{0,1}[0-9]*$')应用场景分析:今天要处理中间库数据不符合格式要求的数据,很自然的想到了正则表达式在网上查到了regexp_like函数,可以很方便的查询出符 阅读全文
posted @ 2013-05-20 19:22 小龙在线 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 原文:http://desert3.iteye.com/blog/811007 -- 不是数字select * from dual where not REGEXP_LIKE('1不是数字1', '^[0-9]+\.{0,1}[0-9]*$')-- 是数字select * from dual ... 阅读全文
posted @ 2013-05-20 19:22 小龙在线 阅读(2911) 评论(0) 推荐(0) 编辑