I am trying to insert a row in my oracle table, but it is giving error 'Date format not recognized'. Details are as below. What is wrong in this?
create table "employee" (
"emp_id" VARCHAR2(100 BYTE),
"emp_name" VARCHAR2(100 BYTE),
"hired_date" Date,
CONSTRAINT "PK_employee" PRIMARY KEY ("emp_id")
);
Insert into employee values ( 'A1234', 'John Day', TO_DATE('07/20/2020 15:05:20', 'MM/DD/YYYY H24:MI:SS'));
employeethen it will be case-insensitive and much easier to work with. - William Robertson