H
Hugh self taught
Hi All,
I have the following sql in a cbo box. It gives me the male's name but I
can't get the syntax right to give the females name.
The male & female in tblPtsCouples is the PK in tblPtsCompetitors.
SELECT tblPtsCouples.PtsCpl_Idx, tblPtsCouples.MaleCpl,
tblPtsCouples.FemaleCpl, tblPtsCompetitors.First_Name+' '+
tblPtsCompetitors.Surname AS Male
FROM tblPtsCouples INNER JOIN tblPtsCompetitors ON tblPtsCouples.MaleCpl =
tblPtsCompetitors.PtsComp_Idx
ORDER BY tblPtsCouples.MaleCpl;
In this cbo I need to see the male & the female as the male may have more
than one partner. Any help getting that sorted will be appreciated.
I have the following sql in a cbo box. It gives me the male's name but I
can't get the syntax right to give the females name.
The male & female in tblPtsCouples is the PK in tblPtsCompetitors.
SELECT tblPtsCouples.PtsCpl_Idx, tblPtsCouples.MaleCpl,
tblPtsCouples.FemaleCpl, tblPtsCompetitors.First_Name+' '+
tblPtsCompetitors.Surname AS Male
FROM tblPtsCouples INNER JOIN tblPtsCompetitors ON tblPtsCouples.MaleCpl =
tblPtsCompetitors.PtsComp_Idx
ORDER BY tblPtsCouples.MaleCpl;
In this cbo I need to see the male & the female as the male may have more
than one partner. Any help getting that sorted will be appreciated.