Home

Published

- 1 min read

alter table to ad timestamp mysql

img of alter table to ad timestamp mysql

The solution for this is noted below

alter table to ad timestamp mysql

Solution

   ALTER TABLE `Table`
ADD COLUMN `datetime` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `some_column`

Try other methods by searching on the site. That is if this doesn’t work