我收到一条错误报告,说ORA-01843:无效的月份。我不确定为什么要得到这个。我为TutorHireDate使用了正确的数据类型,但仍然收到错误。
这就是我所拥有的:
My Code, for the first tuple of the second picture shown below
This is how it's supposed to be displayed on table
CREATE TABLE Tutor(TutorKey INTEGER PRIMARY KEY,
TutorLastName CHAR(30),
TutorFirstname CHAR(30),
TutorPhone INTEGER,
TutorEmail CHAR(30),
TutorHireDate DATE,
TutorStatus CHAR(10));
INSERT INTO Tutor VALUES('980010000', 'Roberts', ' Martha', '2065551467','mroberts@yahoo.com','1/6/2010','Active');
我做错了什么导致错误消息显示吗?