CREATE TABLE `test` ( id int, `gmt_create` datetime DEFAULT NOW() not NULL )ENGINE=InnoDB;
mysql5.5 不支持 datetime DEFAULT NOW() 的写法,mysql5.6可以!
时间: 2024-10-08 01:07:20
CREATE TABLE `test` ( id int, `gmt_create` datetime DEFAULT NOW() not NULL )ENGINE=InnoDB;
mysql5.5 不支持 datetime DEFAULT NOW() 的写法,mysql5.6可以!