views:

37

answers:

1

I have a UML diagram of what I need my database schema to look like. This diagram includes roles and cardinality. How can I enforce cardinality in Postgres?

A: 

Cardinality is enforced by using constraints.

http://www.postgresql.org/docs/8.1/static/ddl-constraints.html

Robert Harvey
Could you please give me an example of such a constraint?
nix
What kind of cardinality are you trying to constrain? Range, uniqueness (another kind of range), or one-to-many joins? The link I provided has good examples of all three.
Robert Harvey
Thanks. I've looked at them.
nix