gpt4 book ai didi

postgresql - 如何使用 ON CONFLICT with Exclusion Constraint?

转载 作者:行者123 更新时间:2023-12-04 14:20:02 25 4
gpt4 key购买 nike

例如:按 userid, sdate, edate

索引
userid  sdate       edate
001 2019-01-01 2019-01-30

如果我像这样插入新数据:

userid  sdate       edate           
001 2019-01-03 2019-01-20
or
001 2019-01-13 2019-02-10
or
001 2019-02-01 2019-02-15

我在下面尝试使用 GIST,但是如何使用 ON CONFLICT 来组合它?

CREATE EXTENSION btree_gist

CREATE TABLE test(
ID INT PRIMARY KEY NOT NULL,
USERID CHAR(5),
SDATE DATE,
EDATE DATE,
EXCLUDE USING gist
(USERID WITH =,
daterange(SDATE, EDATE, '[]') WITH &&)
);


Insert Into test (usersid, sdate, edate)
Values (@UsersId, @SDate, @EDate)
ON Conflict ON CONSTRAINT test_userid_daterange_excl
Do Update
Set sdate = @SDate, edate = @EDate

我得到了:

ERROR:  ON CONFLICT DO UPDATE not supported with exclusion constraints

根据上述情况,我预计会出现以下情况:

userid  sdate       edate       I_EXPECT    
001 2019-01-03 2019-01-20 UPDATE because it is in range
001 2019-01-13 2019-02-10 UPDATE because it is in range
001 2019-02-01 2019-02-15 INSERT because it is not in range

选择 version() 显示:

PostgreSQL 10.6 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.3 20140911 (Red Hat 4.8.3-9), 64-bit

最佳答案

您不能将 INSERT ... ON CONFLICT 与排除索引一起使用,如错误消息所述。

您必须使用来自 the documentation 的示例 43.2 中的代码.

关于postgresql - 如何使用 ON CONFLICT with Exclusion Constraint?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55919404/

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