Actually you can implement that without dirty tricks. Just extend the foreign key referencing the chosen option to include variable_id in addition to choice_id.
Here is a working demo. Temporary tables, so you can easily play with it:
CREATE TEMP TABLE systemvariables (
variable_id integer PRIMARY KEY
,variable text
,choice_id integer
);
INSERT INTO systemvariables(variable_id, variable) VALUES
(1, 'var1')
,(2, 'var2')
,(3, 'var3');
CREATE TEMP TABLE variableoptions (
option_id integer PRIMARY KEY
,option text
,variable_id integer
REFERENCES systemvariables(variable_id)
ON UPDATE CASCADE ON DELETE CASCADE
,UNIQUE (option_id, variable_id) -- needed for the foreign key
);
ALTER TABLE systemvariables
ADD CONSTRAINT systemvariables_choice_id_fk
FOREIGN KEY (choice_id, variable_id)
REFERENCES variableoptions(option_id, variable_id);
INSERT INTO variableoptions VALUES
(1, 'var1_op1', 1)
,(2, 'var1_op2', 1)
,(3, 'var1_op3', 1)
,(4, 'var2_op1', 2)
,(5, 'var2_op2', 2)
,(6, 'var3_op1', 3);
So now, choosing an associated option is allowed:
UPDATE systemvariables SET choice_id = 2 WHERE variable_id = 1;
UPDATE systemvariables SET choice_id = 5 WHERE variable_id = 2;
UPDATE systemvariables SET choice_id = 6 WHERE variable_id = 3;
But there is no getting out of line:
UPDATE systemvariables SET choice_id = 7 WHERE variable_id = 3;
UPDATE systemvariables SET choice_id = 4 WHERE variable_id = 1;
ERROR: insert or update on table "systemvariables" violates foreign key constraint "systemvariables_choice_id_fk"
DETAIL: Key (choice_id,variable_id)=(4,1) is not present in table
"variableoptions".
Voilá. Exactly what you wanted.
All key columns NOT NULL
Addressing the question of @yppercube in the comments, if you want to avoid entries with unknown association (all key columns NOT NULL, including foreign keys), you can do that, too.
The circular dependency would normally make that impossible. It's the classical chicken-egg problem: one of both has to be there first to spawn the other. But nature found a way around that, and so did PostgreSQL: deferrable foreign key constraints.
CREATE TEMP TABLE systemvariables (
variable_id integer PRIMARY KEY
,variable text
,choice_id integer NOT NULL
);
CREATE TEMP TABLE variableoptions (
option_id integer PRIMARY KEY
,option text
,variable_id integer NOT NULL
REFERENCES systemvariables(variable_id)
ON UPDATE CASCADE ON DELETE CASCADE
DEFERRABLE INITIALLY DEFERRED
,UNIQUE (option_id, variable_id) -- needed for the foreign key
);
ALTER TABLE systemvariables
ADD CONSTRAINT systemvariables_choice_id_fk
FOREIGN KEY (choice_id, variable_id)
REFERENCES variableoptions(option_id, variable_id)
DEFERRABLE INITIALLY DEFERRED; -- no CASCADING here!
Now, inserting new variables and associated options has to be done together in a transaction:
BEGIN;
INSERT INTO systemvariables VALUES
(1, 'var1', 2)
,(2, 'var2', 5)
,(3, 'var3', 6);
INSERT INTO variableoptions VALUES
(1, 'var1_op1', 1)
,(2, 'var1_op2', 1)
,(3, 'var1_op3', 1)
,(4, 'var2_op1', 2)
,(5, 'var2_op2', 2)
,(6, 'var3_op1', 3);
END;
The NOT NULL constraint cannot be deferred, it is enforced immediately. But the foreign key constraint can, because we defined it that way. It is checked at the end of the transaction, thereby offering a solution to the chicken-egg problem.
In this edited scenario, both foreign keys are deferred. You can enter variables and options in arbitrary sequence.
You may have noticed that the first foreign key constraint has no CASCADING option. It would not make sense, you don't want to allow changes to variableoptions.variable_id to cascade back.
On the other hand, the second foreign key has CASCADING options and is defined deferrable nonetheless. This carries some limitations. I quote the manual here:
Referential actions other than the NO ACTION check cannot be deferred,
even if the constraint is declared deferrable.
No ACTION is the default.
So, referential integrity checks on INSERT are deferred, but the declared cascading actions on DELETE and UPDATE are not. The following is not permitted in PostgreSQL 9.0 or 9.1, because referential integrity is checked during the UPDATE:
UPDATE option SET var_id = 4 WHERE var_id = 5;
DELETE FROM var WHERE var_id = 5;
Strangely enough, the same thing works in PostgreSQL 8.4, while the documentation claims the same behavior. Looks like a bug in the old version - even if it seems to be beneficial rather than harmful at a first glance. Must have been fixed for the newer versions without changing the docs for 8.4.
[python]tag and add the[database-design]one. – ypercube Dec 6 '11 at 23:13[python]tag for other SQLAlchemy users. I'll get rid of[declarative]instead. – Cam Jackson Dec 6 '11 at 23:24