方法有两种
设置时间的数据类型为 TIMESTAMP
设置时间的默认值为 CURRENT_TIMESTAMP
比如:方法一
CREATE TABLE A(
id int,
newDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
比如:方法二
CREATE TABLE A(
id INT,
newDate DATETIME
);
modify修改字段
ALTER TABLE A MODIFY newDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP
原文地址:https://www.cnblogs.com/Listener-wy/p/12508104.html
时间: 2024-09-29 17:29:33