HY
表:
create table Players (PlayerNo number (4) not null, Name varchar2(15), date_of_birth date,leagno varchar(4));
错误的插入:
insert into PLAYERS (PlayerNo,Name,date_of_birth,leagno) VALUES (1,'Philipp K','Jan-10-1999','1')
怎么了?
错误代码:
Fehler beim Start in Zeile 1 in Befehl:
insert into PLAYERS (PlayerNo,Name,date_of_birth,leagno) VALUES (1,'Philipp K','Jan-10-1999','1')
Fehlerbericht:
SQL-Fehler: ORA-01858: Ein nicht-numerisches Zeichen wurde gefunden, während ein numerisches Zeichen erwartet wurde
01858. 00000 - "a non-numeric character was found where a numeric was expected"
*Cause: The input data to be converted using a date format model was
incorrect. The input data did not contain a number where a number was
required by the format model.
*Action: Fix the input data or the date format model to make sure the
elements match in number and type. Then retry the operation.
答案 0 :(得分:2)
*原因:使用日期格式模型转换的输入数据 是 不正确。输入数据不包含a的数字 号码是 格式模型要求。
您使用的日期字符串与oracle期望的字符串不匹配。默认格式iirc是DD-Mon-YYYY,而不是您尝试使用的Mon-DD-YYYY。
答案 1 :(得分:2)
INSERT
INTO PLAYERS
(
PlayerNo,
Name,
date_of_birth,
leagno
)
VALUES
(
1,
'Philipp K',
TO_DATE('Jan-10-1999','Mon-dd-yyyy'),
'1'
)
您需要使用正确格式的TO_DATE提供日期。
答案 2 :(得分:1)
错误解释:
“要使用转换的输入数据 日期格式模型不正确。 输入数据不包含 需要号码的号码 格式模型“
这意味着您传递给date_of_birth列的值格式错误。默认情况下,Oracle期望日期采用DD-MON-YYYY格式。您将以MON-DD-YYYY格式传递日期。
有两种 - 三种 - 解决这个问题的方法。
to_date('Jan-10-1999', 'MON-DD-YYYY')