I have this query:
I can find all the information I need within it, but not with useful names on some of them.Code:SELECT DISTINCT g.home_id, g.guest_id, sp.sport, sp.id, st.state, st.id, th.school, tg.school FROM ws_games as g JOIN ws_teams as th ON g.home_id = th.id JOIN ws_teams as tg ON g.guest_id = tg.id JOIN ws_state as st ON st.id = g.state JOIN ws_sport as sp ON sp.id = g.sport WHERE g.sport = $sport AND g.year = $year AND g.state = $state AND g.week = $week
The table rows look like:Code:Array ( [0] => 18 [home_id] => 18 [1] => 19 [guest_id] => 19 [2] => Football [sport] => Football [3] => 1 [id] => 4 [4] => Hawaii [state] => Hawaii [5] => 4 [6] => Oceanfront [school] => Spring Beach [7] => Spring Beach )
Why are there multiples? What's with the number like [3] which links to the sport table and withdraws two different columns? [2] and [sport]?Code:ID: 1, home_id: 18, guest_id: 19, state: 4, sport: 1
And why does [6] Oceanfront not have its own [school] like Spring Beach?
This makes me have to use $row[6] to print out Oceanfront and $row["school"] or $row[7] to print out Spring Beach.
Could someone help me understand this, please?
I can get by using the numbers like they are, but is there a way to give each school a different key that is more useful than a number?



Reply With Quote
Bookmarks