if I have tables like this:
GROUP(**GID**, DESC) -- GID IS PK
USER(**UID**, FIRST, LAST, GID) -- UID IS PK, GID IS FK
A group can have multiple users but a user can belong to only one group.
How would I enforce rule so that an employee can belong only to one department?
Much appreciated