Answers for "on update current_timestamp in mysql"

SQL
0

mysql on update current_timestamp

Press CTRL+C to copy CREATE TABLE t1 (
  ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  dt DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);
Posted by: Guest on August-30-2020

Code answers related to "on update current_timestamp in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language