Answers for "change date format and update in mysql"

SQL
0

mysql change timestamp on update

ALTER TABLE whatevertable
     CHANGE whatevercolumn 
            whatevercolumn TIMESTAMP NOT NULL
                           DEFAULT CURRENT_TIMESTAMP 
                           ON UPDATE CURRENT_TIMESTAMP;
Posted by: Guest on September-14-2020

Code answers related to "change date format and update in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language