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

MySQL:Columna automáticamente hora actual de inserción

Esto debería funcionar:

CREATE TABLE table1 (
  timeStampColumn TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);