|
Монс (Монс, Бельгия) |
|---|
| | | | | № | Имя | Нц | Поз | Вз | С | Пт | Ф | Оп | ДО | ДТ | ТехнСп | Ск | В | Тм | Гр | Дс | См | Л | Ун | Ад | Вл | ЗП | Ст |
|---|
| 21 | Хуго Пуриньш |  | GK | 34 | 72 | 72 | 100 | 106 | 5 | -- | Пн3 ИВ3 Р3 Т3 О3 | 6 | 10 | 6 | 16 | 12 | 2 | 20 | 12 | 10 | 20 | 19 | | | 1 | Бернарду Сантуш |  | GK | 23 | 93 | 96 | 96 | 93 | 1 | -- | Пн1 ИВ3 Р3 Т3 О3 | 11 | 15 | 14 | 17 | 11 | 5 | 18 | 5 | 9 | 20 | 37 | | | 2 | Лука Лочошвили |  | SW/CD/RD... | 30 | 91 | 91 | 100 | 85 | 5 | -- | П3 От3 Пр3 ИГ3 Пн1 | 7 | 16 | 12 | 16 | 15 | 5 | 17 | 14 | 6 | 12 | 82 | | | 23 | Мики Брас |  | LD/CD/RD... | 31 | 64 | 64 | 83 | 78 | 1 | -- | П3 От3 Пр3 | 15 | 14 | 7 | 11 | 16 | 1 | 20 | 13 | 16 | 20 | 19 | | Query: select player, sum(minutes) as sm from
(select ps.player, ps.minutes, t.id
from player_statistics ps, tournaments t, teams tm, countries c,
tournament_groups tg,
tournament_stages tst, tournament_groups_stages tgs,
tournament_gr_st_participants tgsp
where t.id = ps.tournament and tm.id = ps.team
and tst.tournament = t.id and tg.tournament = t.id and tgs.group = tg.id
and tgs.stage = tst.id and t.id != 1 and t.id != 5
and tgsp.gr_st = tgs.id and tgsp.team = tm.id and tm.country = c.id
and ps.player = 72992
union select ps.player, ps.minutes, t.id
from player_statistics ps, tournaments t, countries tm,
tournament_groups tg,
tournament_stages tst, tournament_groups_stages tgs,
tournament_gr_st_participants tgsp
where t.id = ps.tournament and
tm.id = ps.team - 10000
and tst.tournament = t.id and tg.tournament = t.id and tgs.group = tg.id
and tgs.stage = tst.id and t.id != 1 and t.id != 5
and tgsp.gr_st = tgs.id and tgsp.team = ps.team
and ps.player = 72992
union select ps.player, ps.minutes, t.id
from player_statistics ps, tournaments t, countries tm,
tournament_groups tg,
tournament_stages tst, tournament_groups_stages tgs,
tournament_gr_st_participants tgsp
where t.id = ps.tournament and
tm.id = ps.team - 20000
and tst.tournament = t.id and tg.tournament = t.id and tgs.group = tg.id
and tgs.stage = tst.id and t.id != 1 and t.id != 5
and tgsp.gr_st = tgs.id and tgsp.team = ps.team
and ps.player = 72992
union select ps.player, ps.minutes, t.id
from player_statistics ps, tournaments t, countries tm,
tournament_groups tg,
tournament_stages tst, tournament_groups_stages tgs,
tournament_gr_st_participants tgsp
where t.id = ps.tournament and
tm.id = ps.team - 30000
and tst.tournament = t.id and tg.tournament = t.id and tgs.group = tg.id
and tgs.stage = tst.id and t.id != 1 and t.id != 5
and tgsp.gr_st = tgs.id and tgsp.team = ps.team
and ps.player = 72992
group by t.id) xxx
group by player error: Out of resources when opening file './fb/tournament_gr_st_participants.MYD' (Errcode: 24)
|
|