SQL error quot;ORA-01722: invalid numberquot;(SQL 错误“ORA-01722:无效数字)
问题描述
对某人来说非常简单,下面的插入给了我
A very easy one for someone, The following insert is giving me the
ORA-01722:无效号码
ORA-01722: invalid number
为什么?
INSERT INTO CUSTOMER VALUES (1,'MALADY','Claire','27 Smith St Caulfield','0419 853 694');
INSERT INTO CUSTOMER VALUES (2,'GIBSON','Jake','27 Smith St Caulfield','0415 713 598');
INSERT INTO CUSTOMER VALUES (3,'LUU','Barry','5 Jones St Malvern','0413 591 341');
INSERT INTO CUSTOMER VALUES (4,'JONES','Michael','7 Smith St Caulfield','0419 853 694');
INSERT INTO CUSTOMER VALUES (5,'MALADY','Betty','27 Smith St Knox','0418 418 347');
推荐答案
尝试将字符串转换为数字时出现 ORA-01722 错误,并且字符串无法转换为数字.
An ORA-01722 error occurs when an attempt is made to convert a character string into a number, and the string cannot be converted into a number.
在没有看到您的表定义的情况下,您似乎正在尝试将值列表末尾的数字序列转换为数字,而分隔它的空格会引发此错误.但根据您提供给我们的信息,它可能发生在任何领域(第一个领域除外).
Without seeing your table definition, it looks like you're trying to convert the numeric sequence at the end of your values list to a number, and the spaces that delimit it are throwing this error. But based on the information you've given us, it could be happening on any field (other than the first one).
这篇关于SQL 错误“ORA-01722:无效数字"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL 错误“ORA-01722:无效数字"
基础教程推荐
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01