It looks like you need to normalize your database. Basically this involves creating a structure that minimizes redundancy between rows (among other things). Before you do much else check out:
http://www.phpbuilder.com/columns/barry20000731.php3
At first glance, I'd suggest breaking it up into 3 tables: a team table, a stadium table, and a game table.
In the team table, include all the information that is specific to that team, eg, name, type, hometown, mascot, etc. Just whatever you'd want to keep track of that pertains to only one specific team. Be sure to include an autoincrement, primary key field in this table.
Do the same for the stadium table. In that table include things like, the stadium name, the location, type of stadium, seating capacity, field type, etc. Also, include an autoincrement primary key field in this table.
Now for the game table. Just like before keep track of all the stats here relating to a game, but when it comes to the teams and the stadium, just use the primary key id of the each and the key for the stadium they played in. Essentially, this is linking the tables together this way.
The main advantage to using linkagaes like this is that it makes your tables easier maintain and much clearer. Now for instance, if you realize that one of the team names is mis-spelled (or changes) you only have to change it in one place (the team table). Or if you get a new phone number for the stadium, or if the stadium adds more seating, you only have to change that info in one place (the stadium table). This is the heart of normalization and generally if you follow the 3rd Normalized form, as described in the above article, you'll wind up with DB that's easier to maintain and easier to work with. That said, 3NF (3rd normalized form) is not always the best, ie, there is no magic rule that works for every situation. But it's a good place to start.