I have a database table entitled meetings. In the meetings table it has the columns named "meeid", "meedate" and "meememberIDs". by using ColdFusion 9 I am able to submit a Standard date in the "meedate" and a comma-delineated list in memberID's who was present from a series of checkboxes from a form. It looks like this :
meeid = 2
meedate= '2014-06-15"
meememberIDs= '3,5,67,78,354, 2345'
Now that I have a record of the date and a comma-delineate list of membersID's that came to a meeting, is there a way using stand SQL to extract the memberID's and match numbers to the primary key to another table entitled "personnel" wherein each number of the comma-delineated meememberIDs column would match the full name and email to the member of personnel table?
example:
3 = michael jones - mjones@ptree.com
5= chris ebinger - cebinger@ptree.com
67 = alfred fox - afox@ptree.com