I would recommend having multiple tables. Think about what you want to do overall.
If there are more than 1 team, have a table just to list the teams.
A team can have many players, but a player can only be part of ONE team... OR does this take into consideration trades etc...
Think the logic through and it might be easier to write queries to get the info you want (will also make your life easier in the future).
TABLE: Teams
PK TeamID
TeamName
Example: Tigers, Bears, Birds
TABLE: Players
PK PlayerID
Name
PF TeamID
Year
GamesPlayed
Touchdowns
Points
Example: John Michael, Misco Jones, Miguel Cabreras
TABLE: Years
Year
Example: 2003,2002,2001
I know I'm missing something, so please, someone else chime in.