Answers for "how to add created at and updated at to a mysql database"

SQL
2

ADD COLOUNS CREATED AND UPDATED AT IN MYSQL

ALTER TABLE t1
ADD COLUMN created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
ADD COLUMN updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
Posted by: Guest on September-19-2020

Code answers related to "how to add created at and updated at to a mysql database"

Code answers related to "SQL"

Browse Popular Code Answers by Language