Hi,
I have a table TEAMS and a table FIXTURES. I'd like to display a list of fixtures (xxx vs. yyyy) but can't work out how to reference the two teams. Can anyone help?
at the moment I am using two parallel queries
SELECT * FROM FIXTURES, TEAMS WHERE
TEAMS.teamId = FIXTURES.challengingTeamId
and
SELECT * FROM FIXTURES, TEAMS WHERE
TEAMS.teamId = FIXTURES.challengedTeamId
but wondered if I could get it in one query?
thanks, Peter





Bookmarks