2016 - 2024

感恩一路有你

oracle判断纯数字 在oracle中,如何用一条select语句查询字段中非纯数字值?

浏览量:1319 时间:2021-03-17 20:34:48 作者:admin

在oracle中,如何用一条select语句查询字段中非纯数字值?

--1.正则判断,适用于10g以上版本--非正整数 select 字段 from 表 where regexp_replace(字段,"d","") is not null--非数值类型select 字段 from 表 where regexp_replace(字段,"^[- ]?d (.d )?$","") is not null--2.自定义函数,判断非值类型create or replace function isnumber(col varchar2) return integer is i numberbegin i := to_number(col) return 1exception when others then return 0endselect 字段 from 表 where isnumber(字段)=0

oracle判断纯数字 正则表达式判断纯数字 正则表达式数字范围

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。