“SQL Auto Update Dupdated_at” Kod odpowiedzi

SQL Auto Update Dupdated_at

ALTER TABLE t1
ADD COLUMN created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
ADD COLUMN updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
Johnvict

SQL Auto Update Dupdated_at

CREATE TABLE t1 (
  created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
  updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);
Foolish Flatworm

Odpowiedzi podobne do “SQL Auto Update Dupdated_at”

Pytania podobne do “SQL Auto Update Dupdated_at”

Więcej pokrewnych odpowiedzi na “SQL Auto Update Dupdated_at” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu