C
|
clig 8/15/2009 |
I have a system for clubs to add their events Three key tables Members (holds details for each member, NB a member can belong to multiple clubs) clubs (details of each club) Members_owners (records which member belongs to which club) Events (details of each event and which club etc) To the events table I want to be able to add the member id (as a lookup) so a member can be allocated to that particular event. The tricky bit I cannot solve is the lookup filter, I know what the sql should be but unsure how to apply to the lookup drop down : " select members.id, members.member_name from members,Members_owners where Members_owners.mbrid = members.id AND Members_owners.ownereid = " & SESSION("UserID") This will output all the members to the logined club
|
S
|
skillsware author 8/15/2009 |
you'd need to do a SQL92 join between the tables - if you have the schema of the tables, their linking column name I can make this a little more SQL like in a response...
|
J
|
Jane 8/17/2009 |
Hi,
|