Clarifications
The formulation of this requirement leaves room for interpretation:
where UserRole.role_name
contains an employee role name.
My interpretation:
with an entry in UserRole
that has role_name = 'employee'
.
Your naming convention is was problematic (updated now). User
is a reserved word in standard SQL and Postgres. It's illegal as identifier unless double-quoted - which would be ill-advised. User legal names so you don't have to double-quote.
I am using trouble-free identifiers in my implementation.
The problem
FOREIGN KEY
and CHECK
constraint are the proven, air-tight tools to enforce relational integrity. Triggers are powerful, useful and versatile features but more sophisticated, less strict and with more room for design errors and corner cases.
Your case is difficult because a FK constraint seems impossible at first: it requires a PRIMARY KEY
or UNIQUE
constraint to reference - neither allows NULL values. There are no partial FK constraints, the only escape from strict referential integrity are NULL values in the referencing columns due to the default MATCH SIMPLE
behavior of FK constraints. Per documentation:
MATCH SIMPLE
allows any of the foreign key columns to be null; if any
of them are null, the row is not required to have a match in the referenced table.
Related answer on dba.SE with more:
The workaround is to introduce a boolean flag is_employee
to mark employees on both sides, defined NOT NULL
in users
, but allowed to be NULL
in user_role
:
Solution
This enforces your requirements exactly, while keeping noise and overhead to a minimum:
CREATE TABLE users (
users_id serial PRIMARY KEY
, employee_nr int
, is_employee bool NOT NULL DEFAULT false
, CONSTRAINT role_employee CHECK (employee_nr IS NOT NULL = is_employee)
, UNIQUE (is_employee, users_id) -- required for FK (otherwise redundant)
);
CREATE TABLE user_role (
user_role_id serial PRIMARY KEY
, users_id int NOT NULL REFERENCES users
, role_name text NOT NULL
, is_employee bool CHECK(is_employee)
, CONSTRAINT role_employee
CHECK (role_name <> 'employee' OR is_employee IS TRUE)
, CONSTRAINT role_employee_requires_employee_nr_fk
FOREIGN KEY (is_employee, users_id) REFERENCES users(is_employee, users_id)
);
That's all.
These triggers are optional but recommended for convenience to set the added tags is_employee
automatically and you don't have to do anything extra:
-- users
CREATE OR REPLACE FUNCTION trg_users_insup_bef()
RETURNS trigger AS
$func$
BEGIN
NEW.is_employee = (NEW.employee_nr IS NOT NULL);
RETURN NEW;
END
$func$ LANGUAGE plpgsql;
CREATE TRIGGER insup_bef
BEFORE INSERT OR UPDATE OF employee_nr ON users
FOR EACH ROW
EXECUTE PROCEDURE trg_users_insup_bef();
-- user_role
CREATE OR REPLACE FUNCTION trg_user_role_insup_bef()
RETURNS trigger AS
$func$
BEGIN
NEW.is_employee = true;
RETURN NEW;
END
$func$ LANGUAGE plpgsql;
CREATE TRIGGER insup_bef
BEFORE INSERT OR UPDATE OF role_name ON user_role
FOR EACH ROW
WHEN (NEW.role_name = 'employee')
EXECUTE PROCEDURE trg_user_role_insup_bef();
Again, no-nonsense, optimized and only called when needed.
SQL Fiddle demo for Postgres 9.3. Should work with Postgres 9.1+.
Major points
Now, if we want to set user_role.role_name = 'employee'
, then there has to be a matching user.employee_nr
first.
You can still add an employee_nr
to any user, and you can (then) still tag any user_role
with is_employee
, irregardless of the actual role_name
. Easy to disallow if you need to, but this implementation does not introduce any more restrictions than required.
users.is_employee
can only be true
or false
and is forced to reflect the existence of an employee_nr
by the CHECK
constraint. The trigger keeps the column in sync automatically. You could allow false
additionally for other purposes with only minor updates to the design.
The rules for user_role.is_employee
are slightly different: it must be true if role_name = 'employee'
. Enforced by a CHECK
constraint and set automatically by the trigger again. But it's allowed to change role_name
to something else and still keep is_employee
. Nobody said a user with an employee_nr
is required to have an according entry in user_role
, just the other way round! Again, easy to enforce additionally if needed.
If there are other triggers that could interfere, consider this:
How To Avoid Looping Trigger Calls In PostgreSQL 9.2.1
But we need not worry that rules might be violated because the above triggers are only for convenience. The rules per se are enforce with CHECK
and FK constraints, which allow no exceptions.
Aside: I put the column is_employee
first in the constraint UNIQUE (is_employee, users_id)
for a reason. users_id
is already covered in the PK, so it can take second place here:
DB associative entities and indexing