SQL Server中的当前时间戳

时间:2014-07-22 15:56:43

标签: sql sql-server timestamp

请帮我解决以下问题:

CREATE TABLE "tblSample"
(
    id_smpl         int not null primary key,
    timestamp_smpl  current_timestamp,
)
go

我正在尝试创建一个包含当前时间戳的表,并且出现错误语法错误。

任何提示?

2 个答案:

答案 0 :(得分:2)

试试这个

CREATE TABLE tblSample(
id_smpl            int not null primary key,
timestamp_smpl     datetime not null DEFAULT current_timestamp
)

答案 1 :(得分:0)

试试这个:

CREATE TABLE table_name ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, cur_timestamp TIMESTAMP(8) );

必须在时间戳中给出值。