加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

postgresql – timestamp类型的表列没有毫秒?

发布时间:2020-12-13 18:09:31 所属栏目:百科 来源:网络整理
导读:我想创建一个没有毫秒的表(id,time)和时间(没有时区的时间戳). 我还想插入默认的当前时间. CREATE TABLE ddd ( id serial not null,time timestamp without time zone default now() ); 指定精度: postgres=# CREATE TABLE foo(a timestamp(0));CREATE TABL
我想创建一个没有毫秒的表(id,time)和时间(没有时区的时间戳).
我还想插入默认的当前时间.
CREATE TABLE ddd (
    id          serial not null,time        timestamp without time zone default now()
    );
指定精度:
postgres=# CREATE TABLE foo(a timestamp(0));
CREATE TABLE
postgres=# INSERT INTO foo VALUES(CURRENT_TIMESTAMP);
INSERT 0 1
postgres=# SELECT * FROM foo;
          a          
---------------------
 2014-01-02 07:26:23
(1 row)

小记 – “时间”是表字段的坏名称(我理解这是示例).任何字段名称都应具有特定的语义.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读