RE: Need help with SELECT 2 tables from choice of 3

2001-11-22 Thread Jerry
>Can't you just make a check before you make a call to the DB? >if( member_id > 1000 ) > // old member query here >else > // new member query here Now I did just that, but that means I have to open recordset 20 times a page (for each record separately)... I am a begginer, I don't kn

Re: Need help with SELECT 2 tables from choice of 3

2001-11-21 Thread Jerry
>>Why no have 3 tables: >>Members >>Data >>TheseMembersAreOld >>Members and Data are as you have them defined. TheseMembersAreOld >>contains only the Member_ID field. >>You then make the Member_ID field primary key on TheseMembersAreOld and >>Members. You can then perform a very fast joins. >H

Re: Need help with SELECT 2 tables from choice of 3

2001-11-21 Thread Thomas S. Iversen
> OldMembers > Memebers > Data Why no have 3 tables: Members Data TheseMembersAreOld Members and Data are as you have them defined. TheseMembersAreOld contains only the Member_ID field. You then make the Member_ID field primary key on TheseMembersAreOld and Members. You can then perform a very