MySQL server has gone away
2006
select distinct
player,
matchstats.team_code,
teams.name as team_name,
team_uniform,
teams.division as division
from
matchstats, teams
where
player = 'Colby Silva'
and
matchstats.team_code = 'griz'
and
matchstats.team_code = teams.team_code
order by
player asc,
team_name asc
MySQL server has gone away (2006)