PostgreSQL now()函数没有返回时间

时间:2017-12-21 00:09:42

标签: postgresql

在表格中插入now()时,书面值仅包含日期(例如2017-12-20),但不包含{{3>中指定的日期时间}}

请参阅此documentation

create table timetest (
    id serial primary key,
    mydate date
);

insert into timetest (mydate) values (
now());

是否有一些特定的命令应该传递给写入或检索时间信息?

1 个答案:

答案 0 :(得分:2)

您创建了mydate date作为date类型列。 date仅代表日期分数(不出所料)。

如果您需要同时使用timestamp类型的日期和时间。

参考文献: