具有排除的PostgreSQL唯一约束

问题描述 投票:4回答:1

我有一张桌子:

CREATE TABLE dbo."TransportInteraction"
(
  "Id" bigint NOT NULL DEFAULT nextval('dbo."TransportInteraction_Id_seq"'::regclass),
  "Message" character varying(256),
  "TransportActionId" integer NOT NULL,
  "TimeCreated" timestamp without time zone NOT NULL,
  "TimeInserted" timestamp without time zone NOT NULL,
  "TaskId" bigint
)

通常,此表是对任务的映射操作。 TransportActionId是一个定义行动类型的integer。某些操作类型对于每个任务必须是唯一的,而有些则不是。

所以我需要一个类型的约束: UNIQUE ("TaskId", "TransportActionId")适用于与TransportActionId != (2||3 || 4)的所有行动。

所以除了ActionId=2,3 or 4之外的所有行动。

有任何想法吗?

sql postgresql indexing unique-constraint check-constraints
1个回答
7
投票

使用partial unique index。喜欢:

CREATE UNIQUE INDEX transint_partial_uni_idx
ON dbo."TransportInteraction" ("TaskId", "TransportActionId")
WHERE TransportActionId NOT IN (2,3,4);

更详细的相关答案: Create unique constraint with null columns Unique combination in a table

© www.soinside.com 2019 - 2024. All rights reserved.