|
Дуйсбург (Дуйсбург, Германия) |
|---|
| | | | | № | Имя | Нц | Поз | Вз | С | Пт | Ф | Оп | ДО | ДТ | ТехнСп | Ск | В | Тм | Гр | Дс | См | Л | Ун | Ад | Вл | ЗП | Ст |
|---|
| 21 | Михаэль Ратайчак |  | GK | 39 | 35 | 35 | 99 | 103 | 33 | -- | Пн3 ИВ3 Р3 Т3 О3 | 1 | 9 | 16 | 15 | 15 | 5 | 20 | 20 | 9 | 20 | 4 | | | 1 | Берк Ходжин |  | GK | 32 | 67 | 67 | 100 | 31 | 5 | -- | ИВ1 Р3 Т1 | 13 | 8 | 16 | 8 | 5 | 5 | 14 | 15 | 20 | 4 | 9 | | | 20 | Робин Клаус |  | SW/LD/CD... | 40 | 12 | 12 | 99 | 132 | 33 | -- | П3 От3 Пр3 ИГ3 | 1 | 9 | 20 | 13 | 9 | 1 | 20 | 17 | 7 | 20 | 1 | | 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 = 62096
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 = 62096
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 = 62096
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 = 62096
group by t.id) xxx
group by player error: Out of resources when opening file './fb/tournament_groups_stages.MYD' (Errcode: 24)
|
|