For "date1" attribute of my table I am trying to insert date of the format
YEAR-MONTH-DAY HOUR:MIN:SEC
Do I have ot define this format in the schema? All I have done is
date1 DATE NULL
I know I can use DATE_FORMAT(), but I think only for retrieving/querying purposes. What about recording data in the table?
if you are trying to insert a date with the time you need to instantiate it with datetime
SEE DOCS
alternatively you can store it as a
TIMESTAMP
. both store in that format