简体   繁体   中英

How to alter table to add new date time column that insert date time on each row creation?

I created a table now I want to add date time column but I want to current date time of each row insertion.

I have written syntax like this: ALTER TABLE particle_photon ADD COLUMN dt_created NOT NULL default CURRENT_TIMESTAMP AFTER humidity;

but I get error:

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'NOT NULL default CURRENT_TIMESTAMP  AFTER  humidity' at line 1

You are missing the declaration of the datatype (I assume TIMESTAMP ):

ALTER TABLE particle_photon 
ADD COLUMN dt_created TIMESTAMP
NOT NULL DEFAULT CURRENT_TIMESTAMP  AFTER humidity;

Demo on DB Fiddle :

CREATE TABLE particle_photon(id INT PRIMARY KEY, humidity INT, lastcol INT);

ALTER TABLE particle_photon 
ADD COLUMN dt_created TIMESTAMP
NOT NULL DEFAULT CURRENT_TIMESTAMP  AFTER humidity;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM