otuatail Posted May 12, 2010 Share Posted May 12, 2010 Hi I have a table of world cup matches. I have a field for the home team and another for the away team. The problem is both of these fields reference the same team table. I beleive you can have 2 copies of the same table as an alias. Don't know how this is done. Here is the query select WorldCup.Date,WorldCup.Channel, venues.Name, teams.Name AS H,teams.Name AS A FROM WorldCup,venues,teams Home, teams Away WHERE venues.VenueID = WorldCup.Venue AND Home.TeamID = WorldCup.Home AND Away.TeamID = WorldCup.Away TIA DEsmond. Link to comment https://forums.phpfreaks.com/topic/201530-help-with-multipul-refrence-to-the-same-table/ Share on other sites More sharing options...
otuatail Posted May 12, 2010 Author Share Posted May 12, 2010 Solved select WorldCup.ID,WorldCup.Date, Home.Name AS Home, Away.Name AS Away, venues.Name AS Venue, WorldCup.Channel FROM WorldCup,venues,teams Home, teams Away WHERE venues.VenueID = WorldCup.Venue AND Home.TeamID = WorldCup.Home AND Away.TeamID = WorldCup.Away Link to comment https://forums.phpfreaks.com/topic/201530-help-with-multipul-refrence-to-the-same-table/#findComment-1057454 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.