sql >> Base de Datos >  >> RDS >> Mysql

Escriba la fecha del sistema predeterminado en Mysql

En lugar de sysdate , prueba CURRENT_TIMESTAMP como:

CREATE TABLE foo (
    creation_time      DATETIME DEFAULT   CURRENT_TIMESTAMP,
    modification_time  DATETIME ON UPDATE CURRENT_TIMESTAMP
)