📜  mysql 默认时间戳值是当前时间戳 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:11.494000             🧑  作者: Mango

代码示例1
CURRENT_TIMESTAMP

You can use two timestamp in one table. For default, use DEFAULT field first 
and then the rest timestamp fields.

Below query should work.

CREATE TABLE myTable 
(
 id INT,
 date_registered TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 
 date_validated TIMESTAMP
);