I am trying to create a table that has date and time columns used to store the date and time information when the entry is recorded in the database. In the MySQL documentati
Only a timestamp field can have DEFAULT CURRENT_TIMESTAMP. It contains both a date and time. TIME and DATE fields will need to be set by your application.