Using PostgreSQL 9.2.4, I have a table users
with a 1:many relation to the table user_roles
. The users
table stores both employees and
New Answer:
This( SQL Sub queries in check constraint ) seems to answer your question, and the language is still in the 9.4 documentation( http://www.postgresql.org/docs/9.4/interactive/sql-createtable.html ).
Old Answer:
SELECT
User.*
, UserRole1.*
FROM
User
LEFT JOIN UserRole UserRole1
ON User.id = UserRole1.UserId
AND (
(
User.employee_number IS NOT NULL AND UserRole1.role_name IN (enumerate employee role names here)
)
OR
(User.employee_number IS NULL)
)
The above query selects all fields from User
and all fields from UserRole
(aliased as UserRole1). I assumed that the key field between the two fields is known as User.id and UserRole1.UserId
, please change these to whatever the real values are.
In the JOIN
part of the query there is an OR that on the left side requires an employee number not be NULL
in the user table and that UserRole1.role_name be in a list that you must supply to the IN ()
operator.
The right part of the JOIN
is the opposite, it requires that User.employee_number
be NULL
(this should be your non-employee set).
If you require a more exact solution then please provide more details on your table structures and what roles must be selected for employees.
First, you can solve this using a trigger.
But, I think you can solve this using constraints, with just a little weirdness:
create table UserRoles (
UserRoleId int not null primary key,
. . .
NeedsEmployeeNumber boolean not null,
. . .
);
create table Users (
. . .
UserRoleId int,
NeedsEmployeeNumber boolean,
EmployeeNumber,
foreign key (UserRoleId, NeedsEmployeeNumber) references UserRoles(UserRoleId, NeedsEmployeeNumber),
check ((NeedsEmployeeNumber and EmployeeNumber is not null) or
(not NeedsEmployeeNumber and EmployeeNumber is null)
)
);
This should work, but it is an awkward solution:
EmployeeNumber
.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.
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
:
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+.
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