|
Атлетико Марте (Сан-Сальвадор, Сальвадор) |
|---|
| | | | | № | Имя | Нц | Поз | Вз | С | Пт | Ф | Оп | ДО | ДТ | ТехнСп | Ск | В | Тм | Гр | Дс | См | Л | Ун | Ад | Вл | ЗП | Ст |
|---|
| 12 | Хавьер Гомес |  | GK | 36 | 39 | 39 | 100 | 119 | 49 | -- | ИВ2 Р3 Т1 О1 | 4 | 12 | 20 | 20 | 20 | 5 | 20 | 8 | 8 | 20 | 6 | | | 18 | Оскар Мехия  |  | GK | 27 | 95 | 97 | 100 | 104 | 7 | -- | ИВ2 Р3 Т1 О1 | 15 | 20 | 20 | 5 | 14 | 8 | 20 | 2 | 15 | 20 | 44 | | | 2 | Рикардо Альварадо |  | LD/RD/LB... | 39 | 26 | 26 | 99 | 187 | 49 | -- | П3 Др3 От3 Пр3 | 5 | 8 | 5 | 5 | 13 | 1 | 20 | 13 | 16 | 20 | 3 | | | 3 | Оливье Айяла |  | LD/CD/LB... | 38 | 49 | 49 | 100 | 200 | 7 | -- | П3 Др3 От3 Пр3 ИГ3 Уд1 | 14 | 17 | 3 | 5 | 16 | 1 | 15 | 13 | 16 | 20 | 16 | | | 7 | Хосе Амайя |  | LD/RD/LB... | 35 | 64 | 64 | 100 | 156 | 7 | -- | П3 Др3 От3 Пр3 Уд3 Пн3 Ш2 Уг2 | 11 | 14 | 1 | 10 | 20 | 15 | 20 | 18 | 13 | 20 | 28 | | | 20 | Роландо Моралес |  | LD/LB/DM... | 30 | 77 | 77 | 100 | 82 | 7 | -- | П3 Др3 От3 Пр3 Уд1 Пн1 Ш1 Уг1 | 17 | 19 | 10 | 4 | 18 | 9 | 12 | 13 | 3 | 19 | 64 | | | 23 | Себастьян Родригес |  | LD/LB | 28 | 81 | 85 | 100 | 31 | 7 | -- | П1 От3 Пр3 | 13 | 14 | 14 | 10 | 4 | 9 | 13 | 2 | 19 | 20 | 34 | | | 4 | Хосуэ Чеген |  | CD/RD/LB... | 38 | 37 | 37 | 99 | 186 | 7 | -- | П3 Др3 От3 Пр3 ИГ3 Уд1 | 4 | 15 | 3 | 5 | 16 | 5 | 20 | 13 | 16 | 20 | 7 | | 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 = 51644
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 = 51644
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 = 51644
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 = 51644
group by t.id) xxx
group by player error: Out of resources when opening file './fb/tournament_groups_stages.MYD' (Errcode: 24)
|
|