I have a question concerning setting up tables. I'm wondering why I would set up the tables in one way rather than the other way.
Example 1:
Users Roles Group
------ ------ -------
pk)UserID pk)UserID pk)GroupID
UserName pk)GroupID GroupName
Password
Example 2:
Users Group
------
pk)UserID pk)GroupID
UserName UserID
Password GroupName
Which one of these designs would be most efficient and why?
Can someone help me on this one.
Thanks,
DW