如果是字符型的列,在记录中存在非数值的值,那么在隐转换的时候就会报错
SQL> create table t (id varchar2(10));
表已创建。
SQL> insert into t values('aaa');
已创建 1 行。
SQL> commit;
提交完成。
SQL> select * from t where id = 1111;
select * from t where id = 1111
*
ERROR 位于第 1 行:
ORA-01722: 无效数字
SQL> insert into t values('11111111');
已创建 1 行。
SQL> commit;
提交完成。
SQL> select * from t where id = 111;
select * from t where id = 111
*
ERROR 位于第 1 行:
ORA-01722: 无效数字
SQL> delete from t where id = 'aaa';
已删除 1 行。
SQL> commit;
提交完成。
SQL> select * from t where id = 111;
未选定行
SQL>
详细解决方案
PL/SQL开发时,错误“ORA-01722: 无效数字或者ORA-01722: invalid number”的原因分析(一)
热度:130 发布时间:2016-05-05 13:48:54.0
相关解决方案
- java报错Syntax error on token "return" invalid Type解决方案
- struts2的property标签,碰到Attribute id invalid for tag property according to TLD
- 数据库拒绝连接 sessionFactory is not writable or has an invalid setter method,该怎么处理
- Parameter index out of range (五 > number of parameters, which is 4)
- hibernate ORA-00932: 数据类型不一致: 应为 NUMBER, 但却取得 BINARY
- Files' name is invalid or does not exist (1205).这是关于什么的异常
- javax.mail.SendFailedException: Invalid Addresses;
- java.io.UTFDataFormatException: invalid first byte
- IOException reading reader invalid first byte 10110000,该怎么解决
- Error : Invalid path什么回事啊求解决!
- Invalid path,是咋回事?
- 运作java的时候 出现Error : Invalid path, "C:\Program Files (x86)\Java\jdk1.6.0_21\bin
- 新手求教,下面代码会报 invalid stream header错误,让小弟我很头疼,不知道什么原因
- CXF测试报错(java.net.MalformedURLException: Invalid address. Endpoint address canno),该如何处理
- 出错了啊org.apache.jasper.JasperException: /registerSucc.jsp(14,5) Invalid standar解决办法
- error RC2144: PRIMARY LANGUAGE ID not a number,这个异常根本解决办法
- vs2005动态调用dll后报错: ~0xC0000008: An invalid handle was specified.解决方法
- Cannot marshal 'return value' Invalid managed/unmanaged type combination.解决思路
- 关于httpWebRequest请求失败异常:The specified call count is not a number
- MVC 客户端印证信息的 data-val-number
- DATAGRID中显示 的oracle number(10,4)类型数据,怎么把小数点后面的 0 去掉
- NHibernate in expected: <end-of-text> (possibly an invalid or unmapped class name was used in the q,该如何处理
- 活见鬼了,今天在几台机器上,原来用得好好的程序都出现了。"The state information is invalid for this page and might be corrupted. "
- Invalid Key or input string is not a valid base64 string解决方案
- Label1.Text = sdr("number").tostring有关问题,待!
- 有时候加了个文件后有下划虚线点上去说:missing xml comment for publicly visible type or number.
- oledb联接SQLSERVER2005出错:[DBNETLIB][ConnectionOpen (Invalid Instance()).]无效的连接
- 这个错误怎样处理:Invalid length for a Base-64 char array
- 用户控件发生 “Invalid postback or callback argument”异常,
- ORA-01017: invalid username/password; logon denied