我有一张 table :

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 是定义 Action 类型的 integer。某些操作类型对于每个任务必须是唯一的,而另一些则不是。

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

因此,除了带有 ActionId=2,3 or 4 的那些操作之外的所有操作。

有任何想法吗?

最佳答案

使用 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
  • 关于sql - 带有排除项的 PostgreSQL 唯一约束,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20293190/

    10-13 03:04