gpt4 book ai didi

postgresql - 将 PostgreSQL EXCLUDE 范围约束与 UNIQUE 约束相结合

转载 作者:行者123 更新时间:2023-11-29 11:19:18 43 4
gpt4 key购买 nike

在 PostgreSQL 中,如何将范围列上的排除约束与其他标量列上的唯一约束结合起来。或者换句话说,如何确保范围重叠检查仅与对其他一些列的唯一检查结合使用?

例如,假设我有:

CREATE TABLE reservation (
restaurant_id int,
time_range tsrange
);

我想确保对于每个 restaurant_id,没有重叠的 time_range

我知道我可以像这样创建一个独占范围约束:

CREATE TABLE reservation (
restaurant_id int,
time_range tsrange EXCLUDE USING gist (time_range WITH &&)
);

但是我如何确保 time_range 检查的范围在 restaurant_id 范围内?

最佳答案

CREATE TABLE reservation 
(
restaurant_id int,
time_range tsrange,
EXCLUDE USING gist (restaurant_id with =, time_range WITH &&)
);

注意需要安装扩展btree_gist,因为GIST索引默认没有相等运算符:

http://www.postgresql.org/docs/current/static/btree-gist.html

关于postgresql - 将 PostgreSQL EXCLUDE 范围约束与 UNIQUE 约束相结合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33464032/

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