我是 SQL 编程的新手,我创建了一个表,我想在其中插入一个日期,例如
create table person (
PANr integer not null,
name Varchar(10),
HNr integer not null,
stuff_date date,
constraint P_NR primary key (PANr)
);
插入 Personen 值 ('4711','Andreas''15','31.10.1958');
表的创建工作,但插入命令给出了这个错误:
SQL Error: ORA-01843: not a valid month
01843. 00000 - "not a valid month"
任何想法这里有什么问题?提前致谢