I received this error.
Error Code: 1292. Incorrect date value: '9/28/1989' for column 'Birthdate' at row 1 0.000 sec.
How can I fix this error rather than edit the values into the format MySQL accepts?
CREATE TABLE Patients (
Patient_ID integer PRIMARY KEY NOT NULL,
L_Name varchar (10) NOT NULL,
F_Name varchar (15) NOT NULL,
Birthdate date NOT NULL,
Telephone text (15) NOT NULL,
Patient_Status Varchar (20) NOT NULL);
INSERT INTO Patients VALUES ( '2116', 'Muhammed', 'Khalis', '9/28/1989', '+1868-622-8322', 'Outpatient');
INSERT INTO Patients VALUES ( '2117', 'Gueverra', 'Leanna', '1/24/2005', '+1868-321-4128', 'Outpatient');
INSERT INTO Patients VALUES ( '2118', 'Hunte', 'Riley', '3/8/1944', '+1868-293-2782', 'Outpatient')
INSERT INTO Patients VALUES ( '2117', 'Gueverra', 'Leanna', '1/24/2005', '+1868-321-4128', 'Outpatient');
INSERT INTO Patients VALUES ( '2118', 'Hunte', 'Riley', '3/8/1944', '+1868-293-2782', 'Outpatient');