Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

MySQL:Coluna automaticamente atual tempo de inserção


Isso deve funcionar:
CREATE TABLE table1 (
  timeStampColumn TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);