我可以在sqlite3中创建一个具有默认值的datetime列吗?

有没有办法在sqlite3中创建一个表,其datetime列默认为’现在’?

以下语句返回语法错误

create table tbl1(id int primary key,dt datetime default datetime('now'));

更新:这是正确的ddl礼貌Sky Sanders

create table tbl1(id int primary key,dt datetime default current_timestamp);
尝试这个:
create table tbl1(id int primary key,dt datetime default current_timestamp);

背景:

The DEFAULT constraint specifies a
default value to use when doing an
INSERT. The value may be NULL,a
string constant,a number,or a
constant expression enclosed in
parentheses. The default value may
also be one of the special
case-independant keywords
CURRENT_TIME,CURRENT_DATE or
CURRENT_TIMESTAMP. If the value is
NULL,a string constant or number,it
is inserted into the column whenever
an INSERT statement that does not
specify a value for the column is
executed. If the value is
CURRENT_TIME,CURRENT_DATE or
CURRENT_TIMESTAMP,then the current
UTC date and/or time is inserted into
the columns. For CURRENT_TIME,the
format is HH:MM:SS. For CURRENT_DATE,
YYYY-MM-DD. The format for
CURRENT_TIMESTAMP is “YYYY-MM-DD
HH:MM:SS”.

http://www.sqlite.org/lang_createtable.html

相关文章

安装 在Windows上安装SQLite。 访问官网下载下Precompliled Binaries for Windows的两个压缩包。 创建s...
一、安装 下载地址:http://www.sqlite.org/download.html 将Precompiled Binaries for Windows下的包下...
实例: 会员信息管理 功能:1.查看数据库 2.清空数据库 3.增加会员 4.删除会员 5.更新会员 6.查找会员  ...
关于SQLite SQLite是一个轻量的、跨平台的、开源的数据库引擎,它的在读写效率、消耗总量、延迟时间和整...