Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Fehler Es kann nur eine TIMESTAMP-Spalte mit CURRENT_TIMESTAMP in der DEFAULT-Klausel geben, obwohl ich nichts falsch mache

Laut MySQL-Handbuch, Version 5.5, Automatische Initialisierung und Aktualisierung für TIMESTAMP

CREATE TABLE t1 (
  ts TIMESTAMP
);

Allerdings

CREATE TABLE t1 (
  ts TIMESTAMP DEFAULT 0
);

Das sollte also funktionieren:

CREATE TABLE AlarmHistory
(
    id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
    value DOUBLE NOT NULL,
    startedStamp TIMESTAMP DEFAULT 0 NOT NULL,
    finishedStamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
);

Geige