“MySQL auf Update Current_Timestamp” Code-Antworten

MySQL auf 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
);
Eager Elephant

MySQL ändern Zeitstempel beim Update

ALTER TABLE whatevertable
     CHANGE whatevercolumn 
            whatevercolumn TIMESTAMP NOT NULL
                           DEFAULT CURRENT_TIMESTAMP 
                           ON UPDATE CURRENT_TIMESTAMP;
Adventurous Alligator

Ähnliche Antworten wie “MySQL auf Update Current_Timestamp”

Fragen ähnlich wie “MySQL auf Update Current_Timestamp”

Weitere verwandte Antworten zu “MySQL auf Update Current_Timestamp” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen