That leads me to the induction, that you have several identically structured tables. For each team its own. And that in turn is not an ideal way of structuring the database - one table with an additional field identifying the team would be better. And then in turn there would be no need to display tablenames: The teamname is part of the data while a tablename in contrast is part of the structure. So storing data in tablenames is not the ideal solution.
To give you an example:
integrate your tables to something like this:
table: teamData
ID|someData|teamID
1|bla|1
2|bla|2
3|bla|2
4|bla|1
5|bla|5
6|bla|1
and add a second table like that for teams
table: teamName
teamID|teamName
1|Lincoln Lakers
2|Washington Fielders
5|Miami Beachers
That's just some thoughts...it's your database. 🙂
Bjom