Alright. I have 2 tables:
User_X table
----------------
UserID (Int)
Name (Char)
Group_List (Char)
Group_X Table
------------------
GroupID (Int)
GroupName (Char)
I want to take every row in the Group_X table and check for the presence of the row's Group_ID field within the Group_List field of User_X.
IE: Group_List for a specific row(user) could read as 100 ,200 ,300 blah blah blah
So how do I, for every group, show the users that have membership in that group, as determined by the group's ID being present (anywhere) inside the Group_List field?
-------------------------------------------------------------------------------------------------
Thanks in advance! -Tal
User_X table
----------------
UserID (Int)
Name (Char)
Group_List (Char)
Group_X Table
------------------
GroupID (Int)
GroupName (Char)
I want to take every row in the Group_X table and check for the presence of the row's Group_ID field within the Group_List field of User_X.
IE: Group_List for a specific row(user) could read as 100 ,200 ,300 blah blah blah
So how do I, for every group, show the users that have membership in that group, as determined by the group's ID being present (anywhere) inside the Group_List field?
-------------------------------------------------------------------------------------------------
Thanks in advance! -Tal