我有一张桌子:
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
之外的所有行动。
有任何想法吗?
使用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