adding generated time in row mysql workbench

Solutions on MaxInterview for adding generated time in row mysql workbench by the best coders in the world

showing results for - "adding generated time in row mysql workbench"
Valeria
08 Jul 2017
1ALTER TABLE
2 MODIFY dt_created datetime DEFAULT CURRENT_TIMESTAMP
3
4ALTER TABLE
5 MODIFY dt_modified datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP