【PostgreSQL】建表时给timestamp字段设上缺省值
create table tagcnt(
id int,
cnt int,
create_time timestamp default now(),
primary key(id)
)
以上的函数now() 即相当于oracle里的sysdate。
END
create table tagcnt(
id int,
cnt int,
create_time timestamp default now(),
primary key(id)
)
以上的函数now() 即相当于oracle里的sysdate。
END