How can I add a date of birth into a table? I'm not sure how to properly format using the TO_CHAR function. Currently have
INSERT INTO Participant (PartDOB,)
VALUES (TO_CHAR(sysdate, 'DD-MM-YYYY')'18-09-1964')
But it just returns with "missing comma". What's the correct way to format it?