EN
MySQL - How auto-complete datetime field value in MySQL Workbench?
1
answers
3
points
How can I set DATETIME
type row value autocomplete?
I need default value to be automatically added when the row is created.
I'm working with MySQL Workbench.
1 answer
3
points
Set Default/Expression
value to:
CURRENT_TIMESTAMP()
Practical example
Open settings of the table you want to alter. Then add CURRENT_TIMESTAMP()
to the Default/Expression of the DATETIME
data type row.

0 comments
Add comment