gpt4 book ai didi

timestamp - PostgreSQL如何设置带时间戳的主键列自动填充

转载 作者:行者123 更新时间:2023-12-02 23:45:10 24 4
gpt4 key购买 nike

如何在 PostgreSQL 中实现这一目标?

我想要一个带有时间戳字段的表,该字段在插入时自动获取 now() 的值。时间戳永远不会更新。我认为我需要创建一个触发器来执行此操作。如果有更简单的方法,请指教。

也许,创建该列,使其具有现在的默认值,然后在不指定时间戳列的情况下插入,以便它获得默认值?

创建表foo(q_i_time时间戳,时区不为空默认now(),someval int);

CREATE TABLE
billing=# insert into foo (someval) values (22);
INSERT 0 1
billing=# insert into foo (someval) values (26);
INSERT 0 1
billing=# insert into foo (someval) values (1);
INSERT 0 1
billing=# select * from foo;

q_i_time | someval
-------------------------------+---------
2008-02-25 17:23:03.247619-08 | 22
2008-02-25 17:23:07.43922-08 | 26
2008-02-25 17:23:10.111189-08 | 1
(3 rows)

这个自动填充的时间戳列可以作为主键吗?

感谢高级。

最佳答案

不需要触发器,因为您没有更新时间戳。只需声明一个 DEFAULT,例如

CREATE TABLE demo (
id integer primary key,
created_at timestamp not null default current_timestamp
);

示例:

test=>     CREATE TABLE demo (
test(> id integer primary key,
test(> created_at timestamp not null default current_timestamp
test(> );
CREATE TABLE
test=> INSERT INTO demo(id) VALUES(1),(2);
INSERT 0 2
test=> INSERT INTO demo(id) VALUES(3);
INSERT 0 1
test=> SELECT * FROM demo;
id | created_at
----+----------------------------
1 | 2015-06-13 12:30:55.169221
2 | 2015-06-13 12:30:55.169221
3 | 2015-06-13 12:30:57.395104
(3 rows)

请注意,前两个时间戳是相同的,因为它是单个事务。如果您不希望这样,请使用 clock_timestamp 而不是 current_timestamp

请注意,应用程序仍然可以通过显式指定来覆盖时间戳:

test=> INSERT INTO demo(id, created_at) VALUES (4, '2014-01-01 00:00:00');
INSERT 0 1
test=> SELECT * FROM demo WHERE id = 4;
id | created_at
----+---------------------
4 | 2014-01-01 00:00:00
(1 row)

如果您希望强制该值,或者您还希望在更新行时更新该值,则仅需要触发器。

关于timestamp - PostgreSQL如何设置带时间戳的主键列自动填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30803446/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com