Answers for "set default value for datetime column in mysql"

SQL
0

mysql default timestamp value to be current timestamp

CURRENT_TIMESTAMP

You can use two timestamp in one table. For default, use DEFAULT field first 
and then the rest timestamp fields.

Below query should work.

CREATE TABLE myTable 
(
 id INT,
 date_registered TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 
 date_validated TIMESTAMP
);
Posted by: Guest on April-23-2021
1

set default today mysql

ALTER TABLE table
ADD column DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP;
Posted by: Guest on April-08-2021

Code answers related to "set default value for datetime column in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language