How can you tell if a value is not numeric in Oracle?(在 Oracle 中如何判断一个值是否不是数字?)
问题描述
如果我的值无效,我有以下代码返回错误消息.如果给定的值不是数字,我想给出相同的错误消息.
I have the following code that returns an error message if my value is invalid. I would like to give the same error message if the value given is not numeric.
IF(option_id = 0021) THEN
IF((value<10000) or (value>7200000) or /* Numeric Check */)THEN
ip_msg(6214,option_name); -- Error Message
return;
END IF;
END IF;
在 SQL Server 中,我只是使用了 ISNUMERIC()
.我想在 Oracle 中做类似的事情.比如,
In SQL Server, I simply used ISNUMERIC()
. I would like to do something similar in Oracle. Such as,
IF((!ISNUMERIC(value)) or (value<10000) or (value>7200000))
THEN ...
推荐答案
REGEXP_LIKE(column, '^[[:digit:]]+$')
如果列只包含数字字符则返回 TRUE
returns TRUE if column holds only numeric characters
这篇关于在 Oracle 中如何判断一个值是否不是数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Oracle 中如何判断一个值是否不是数字?
- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01