How do you set a default value for a MySQL Datetime column?

后端 未结 26 2070
野的像风
野的像风 2020-11-22 01:55

How do you set a default value for a MySQL Datetime column?

In SQL Server it\'s getdate(). What is the equivalant for MySQL? I\'m using MySQL 5.x if tha

26条回答
  •  南笙
    南笙 (楼主)
    2020-11-22 02:29

    You can use now() to set the value of a datetime column, but keep in mind that you can't use that as a default value.

提交回复
热议问题