This table handles the assignment of users to groups. It works through User_Id and Group_Id references to the User_Id in the APP_User table, where User_Id refers to the individual user who has an Is_Group flag equal to 0, and Group_Id refers to a record where this flag equals 1, which represents the actual group. Essentially, this is a many-to-many relationship table that lets you assign multiple users to multiple groups.

Columns

#ColumnData TypeNullablePKIdentityComputedCollation
1User_In_Group_IdintNoYesYesNo
2User_IdintNoNoNoNo
3Group_IdintNoNoNoNo

Foreign Keys

ColumnReferences
Group_IdAPP_User.User_Id
User_IdAPP_User.User_Id