I currently have this SQL:
CREATE TABLE Demographics(
First_Name VARCHAR(12) NOT NULL PRIMARY KEY,
Last_Name VARCHAR(12) NOT NULL,
Birthdate DATE NOT NULL
);
INSERT INTO Demographics(First_Name, Last_Name, Birdate) VALUES
('John', 'Smith', '05/18/2005' );
I know that the DATE parameter only allows you to have the format: yyyy-mm-dd, but I was wondering if there is a way to get DATE to accept '05/18/2005' since there are thousands of other inserts exactly like that.