I have the following tables:
reg_season
+--------+--------+---------+------+--------+
| season | league | team | wins | losses |
+--------+--------+---------+------+--------+
| 1962 | AL | Yankees | 96 | 66 |
+--------+--------+---------+------+--------+
postseason
+--------+---------+----------+
| season | team | finish |
+--------+---------+----------+
| 1962 | Yankees | champion |
+--------+---------+----------+
mvp
+--------+--------+--------+
| season | league | winner |
+--------+--------+--------+
| 1962 | AL | Mantle |
+--------+--------+--------+
rookie_of_the_year
+--------+--------+--------+
| season | league | winner |
+--------+--------+--------+
| 1962 | AL | Tresh |
+--------+--------+--------+
Each table contains a single entry for each season.
I need a query that will produce summary information for each season, ie:
+--------+--------+------------------+--------------------+--------+-------+
| season | league | reg_season_champ | world_series_champ | mvp | roy |
+--------+--------+------------------+--------------------+--------+-------+
| 1962 | AL | Yankees | Yankees | Mantle | Tresh |
+--------+--------+------------------+--------------------+--------+-------+
| 1961 | ... | ... | ... | ... | ... |
+--------+--------+------------------+--------------------+--------+-------+
| 1960 | ... | ... | ... | ... | ... |
+--------+--------+------------------+--------------------+--------+-------+
Please point me in the right direction. Thanks.