Have the following Tables
ID Name
---- ------
1 A
2 B
3 C
4 D
5 E
UserID Name ApprovedList
-------- ------ --------------
1 Ace 1
2 Bob 1
3 Cal 2|4|5
4 Doug 2
5 Eric 3
I would like to pass in the UserID of 3 for Cal and get the following table back
ID Approved
---- ----------
1 No
2 Yes
3 No
4 Yes
5 Yes
(I apologize for the terrible Table display, I googled SO Tables about 30 different ways and not one usable resource).