27-10-2025 в 20:00, Ледовая арена «ICE RINK Новоселье», 5-й дивизион
27-10-2025 в 21:15, Ледовая арена Шуваловский лед, 3-й дивизион
27-10-2025 в 21:30, Север Парк, 6-й дивизион
27-10-2025 в 21:30, Ледовая арена «Академия Динамо» - Мебельная ул. 33А, 5-й дивизион
28-10-2025 в 20:05, ФОК Ижорец, 5-й дивизион
28-10-2025 в 23:00, Север Парк, 7-й дивизион
28-10-2025 в 23:00, Газпром (Передовиков), Арена А, 7-й дивизион
28-10-2025 в 23:00, Ледовая арена «Ладога», 7-й дивизион
29-10-2025 в 21:00, Ледовый комплекс «АСК-С», 6-й дивизион
29-10-2025 в 21:30, Ледовая арена ФОК «Гололед», 6-й дивизион
Prime - Российский производитель хоккейной экипировки Официальный дилер хоккейных клюшек «ЗаряД» в Санкт-Петербурге

Сезон 2025-2026

Герасев Александр #1192

  • Дата рождения: 24.07.1971
  • Возраст: 54
  • Рост: 173
  • Вес: 78
  • Статус: Любитель 1 звезда
Герасев Александр

Заявки

7-й дивизион Турнир Заявлен Команда Номер Амплуа

Регулярное первенство

7-й дивизион

09.10.2025 Легион 2023 93 Нападающий
Предсезонный 2025, Группа B (6-й дивизион) Турнир Заявлен Команда Номер Амплуа

Предсезонный турнир

Предсезонный 2025, Группа B (6-й дивизион)

02.09.2025 Легион 93 Нападающий
Летний кубок 2025. 7-й дивизион. Плей-офф Турнир Заявлен Команда Номер Амплуа

Летний кубок 2025

Летний кубок 2025. 7-й дивизион. Плей-офф

27.08.2025 Легион 2023 93 Нападающий
Летний кубок 2025. 6-й дивизион Турнир Заявлен Команда Номер Амплуа

Летний кубок 2025

Летний кубок 2025. 6-й дивизион

03.07.2025 Легион 93 Нападающий
Летний кубок 2025. 7-й дивизион Турнир Заявлен Команда Номер Амплуа

Летний кубок 2025

Летний кубок 2025. 7-й дивизион

03.07.2025 Легион 2023 93 Нападающий

Статистика

SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '10' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2025-2026 М О Ш П +/- ШТ
Летний кубок 2025. 7-й дивизион. Плей-офф

Летний кубок 2025. 7-й дивизион. Плей-офф

Летний кубок 2025

3 0
ср.0
0
ср.0
0
ср.0
0
ср.0
2
ср.0.7
Соперники Дата матча О Ш П +/- ШТ
Остров 2 - Легион 2023 02 сентября 2025 0 0 0 0 0
Royals United - Легион 2023 12 сентября 2025 0 0 0 0 0
Легион 2023 - Royals United 15 сентября 2025 0 0 0 0 2
Предсезонный 2025, Группа B (6-й дивизион)

Предсезонный 2025, Группа B (6-й дивизион)

Предсезонный турнир

1 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион - Бастион 29 сентября 2025 0 0 0 0 0
Летний кубок 2025. 6-й дивизион

Летний кубок 2025. 6-й дивизион

Летний кубок 2025

10 1
ср.0.1
0
ср.0
1
ср.0.1
0
ср.0
4
ср.0.4
Соперники Дата матча О Ш П +/- ШТ
Феникс 2 - Легион 07 июля 2025 1 0 1 0 0
Легион - ИСМ 16 июля 2025 0 0 0 0 0
Авангард Профилерс - Легион 21 июля 2025 0 0 0 0 0
РамбоВ - Легион 29 июля 2025 0 0 0 0 2
Легион - North Stars 04 августа 2025 0 0 0 0 0
ИСМ - Легион 12 августа 2025 0 0 0 0 0
Легион - Феникс 2 13 августа 2025 0 0 0 0 0
Легион - Авангард Профилерс 20 августа 2025 0 0 0 0 2
Легион - РамбоВ 27 августа 2025 0 0 0 0 0
Легион - Северный человек 01 сентября 2025 0 0 0 0 0
Летний кубок 2025. 7-й дивизион

Летний кубок 2025. 7-й дивизион

Летний кубок 2025

3 1
ср.0.3
1
ср.0.3
0
ср.0
0
ср.0
2
ср.0.7
Соперники Дата матча О Ш П +/- ШТ
Сборная СПб РусГидро - Легион 2023 15 июля 2025 0 0 0 0 0
Легион 2023 - Royals United 23 июля 2025 0 0 0 0 0
Легион 2023 - Остров 2 30 июля 2025 1 1 0 0 2
SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '9' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2024-2025 М О Ш П +/- ШТ
7-й Дивизион

7-й Дивизион

Регулярное первенство

21 10
ср.0.5
3
ср.0.1
7
ср.0.3
0
ср.0
4
ср.0.2
Соперники Дата матча О Ш П +/- ШТ
Max Pro Start - Легион 2023 06 ноября 2024 2 1 1 0 0
Бунтари - Легион 2023 14 ноября 2024 0 0 0 0 0
GT - Легион 2023 26 ноября 2024 1 0 1 0 0
Легион 2023 - Рать 1703 18 ноября 2024 1 0 1 0 0
Рать 1703 - Легион 2023 08 декабря 2024 1 0 1 0 0
Легион 2023 - Vikings 09 декабря 2024 0 0 0 0 0
Легион 2023 - Max Pro Start 23 декабря 2024 0 0 0 0 0
Легион 2023 - Бунтари 15 января 2025 0 0 0 0 0
Vikings - Легион 2023 22 января 2025 0 0 0 0 0
Рать 1703 - Легион 2023 26 января 2025 0 0 0 0 0
Легион 2023 - GT 03 февраля 2025 0 0 0 0 0
Max Pro Start - Легион 2023 12 февраля 2025 0 0 0 0 0
Легион 2023 - Vikings 24 февраля 2025 1 1 0 0 0
Легион 2023 - Vikings 24 марта 2025 0 0 0 0 2
Vikings - Легион 2023 31 марта 2025 0 0 0 0 0
Легион 2023 - Vikings 02 апреля 2025 0 0 0 0 2
Vikings - Легион 2023 07 апреля 2025 1 0 1 0 0
Легион 2023 - Vikings 11 апреля 2025 2 1 1 0 0
Бунтари - Легион 2023 14 апреля 2025 0 0 0 0 0
Бунтари - Легион 2023 21 апреля 2025 1 0 1 0 0
Легион 2023 - Бунтари 23 апреля 2025 0 0 0 0 0
5-й дивизион

5-й дивизион

Регулярное первенство

16 2
ср.0.1
0
ср.0
2
ср.0.1
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион - Остров 28 октября 2024 0 0 0 0 0
Рать - Легион 05 ноября 2024 0 0 0 0 0
Легион - Ржавый якорь 25 ноября 2024 1 0 1 0 0
Легион - Рать 04 декабря 2024 0 0 0 0 0
Ржавый якорь - Легион 17 декабря 2024 0 0 0 0 0
Рать - Легион 14 января 2025 0 0 0 0 0
Легион - Отрадное 20 января 2025 0 0 0 0 0
Остров - Легион 29 января 2025 0 0 0 0 0
Легион - Рать 17 февраля 2025 0 0 0 0 0
Отрадное - Легион 27 февраля 2025 0 0 0 0 0
Легион - Остров 03 марта 2025 0 0 0 0 0
Отрадное - Легион 20 марта 2025 0 0 0 0 0
Отрадное - Легион 03 апреля 2025 0 0 0 0 0
Рать - Легион 15 апреля 2025 0 0 0 0 0
Легион - Рать 16 апреля 2025 0 0 0 0 0
Рать - Легион 29 апреля 2025 1 0 1 0 0
Группа B

Группа B

Квалификационный 2024

6 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
РамбоВ - Легион 09 июля 2024 0 0 0 0 0
Фонд развития гольфа - Легион 17 июля 2024 0 0 0 0 0
Рать - Легион 23 июля 2024 0 0 0 0 0
Легион - РамбоВ 31 июля 2024 0 0 0 0 0
Легион - Рать 14 августа 2024 0 0 0 0 0
Легион - Фонд развития гольфа 21 августа 2024 0 0 0 0 0
Группа А

Группа А

Квалификационный 2024

1 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Ветераны Боевых Действий - Royals United 16 июля 2024 0 0 0 0 0
SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '8' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2023-2024 М О Ш П +/- ШТ
MadGuyHockey Cup. Группа C (5-й дивизион)

MadGuyHockey Cup. Группа C (5-й дивизион)

Кубки внутрисезонные

4 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион - Рать 24 апреля 2024 0 0 0 0 0
Легион - ХКЛ 05 июня 2024 0 0 0 0 0
Легион - Royals 3 22 мая 2024 0 0 0 0 0
ХКЛ - Легион 07 июня 2024 0 0 0 0 0
MadGuyHockey Cup. Группа А (7-й дивизион)

MadGuyHockey Cup. Группа А (7-й дивизион)

Кубки внутрисезонные

2 0
ср.0
0
ср.0
0
ср.0
0
ср.0
2
ср.1
Соперники Дата матча О Ш П +/- ШТ
Самураи ST - Royals United 29 мая 2024 0 0 0 0 2
Истребители Старт - Royals United 13 июня 2024 0 0 0 0 0
5-й дивизион

5-й дивизион

Регулярное первенство

5 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион - Прогресс 17 января 2024 0 0 0 0 0
Рать - Легион 23 января 2024 0 0 0 0 0
Легион - Танк 07 февраля 2024 0 0 0 0 0
Вымпел Про - Легион 26 февраля 2024 0 0 0 0 0
Отрадное - Легион 05 марта 2024 0 0 0 0 0
Квалификационный 2023 Группа С (3-й дивизион)

Квалификационный 2023 Группа С (3-й дивизион)

Квалификационный 2023

5 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион - Самураи 19 июля 2023 0 0 0 0 0
Легион - Динамит 02 августа 2023 0 0 0 0 0
Легион - Хаски 23 августа 2023 0 0 0 0 0
Легион - Медведь 09 августа 2023 0 0 0 0 0
Jokers - Легион 07 августа 2023 0 0 0 0 0
SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '7' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2022-2023 М О Ш П +/- ШТ
MadGuyHockey Cup. Группа С (4-й дивизион)

MadGuyHockey Cup. Группа С (4-й дивизион)

MadGuyHockey Cup

4 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион - Кронштадт 26 апреля 2023 0 0 0 0 0
Парк-Премьер 2 - Легион 16 мая 2023 0 0 0 0 0
Легион - Гепард 24 мая 2023 0 0 0 0 0
Кронштадт - Легион 07 июня 2023 0 0 0 0 0
MadGuyHockey Cup. Группа А (СТАРТ)

MadGuyHockey Cup. Группа А (СТАРТ)

MadGuyHockey Cup

1 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Royals United - ПСБ 26 мая 2023 0 0 0 0 0
4-й Дивизион

4-й Дивизион

Регулярное первенство

4 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион - Лоси 21 декабря 2022 0 0 0 0 0
Snow Wolf - Легион 31 января 2023 0 0 0 0 0
Лоси - Легион 16 февраля 2023 0 0 0 0 0
Легион - Snow Wolf 13 февраля 2023 0 0 0 0 0
SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '6' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2021-2022 М О Ш П +/- ШТ
Дивизион СТАРТ

Дивизион СТАРТ

Регулярное первенство

1 0
ср.0
0
ср.0
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
Легион 2023 - Алмаз С 24 декабря 2021 0 0 0 0 0
SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '5' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2020-2021 М О Ш П +/- ШТ
Предсезонный. Основная сетка

Предсезонный. Основная сетка

Предсезонный

3 1
ср.0.3
1
ср.0.3
0
ср.0
0
ср.0
0
ср.0
Соперники Дата матча О Ш П +/- ШТ
T-Systems - Шершни 19 октября 2020 1 1 0 0 0
T-Systems - Синяя Машина 11 ноября 2020 0 0 0 0 0
Синяя Машина - T-Systems 02 ноября 2020 0 0 0 0 0
SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '2' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2018-2019 М О Ш П +/- ШТ
2-й Дивизион

2-й Дивизион

Регулярное первенство

18 14
ср.0.8
5
ср.0.3
9
ср.0.5
1
ср.0.1
4
ср.0.2
Соперники Дата матча О Ш П +/- ШТ
Greenway - Рать 1703 22 октября 2018 1 0 1 0 0
Greenway - Шершни 29 октября 2018 2 1 1 0 0
Greenway - ЖХК Хорс 12 ноября 2018 0 0 0 0 0
Greenway - Диаконт-Нева 19 ноября 2018 0 0 0 0 0
Диаконт-Нева - Greenway 23 ноября 2018 0 0 0 0 0
Легион - Greenway 05 декабря 2018 1 1 0 0 0
Рать 1703 - Greenway 16 января 2019 0 0 0 0 0
ЖХК Хорс - Greenway 28 января 2019 1 0 1 0 0
Шершни - Greenway 01 февраля 2019 2 0 2 0 0
Greenway - Диаконт-Нева 18 февраля 2019 0 0 0 0 2
Рать 1703 - Greenway 20 февраля 2019 1 0 1 0 0
Greenway - Шершни 04 марта 2019 1 1 0 0 0
Greenway - ЖХК Хорс 18 марта 2019 1 0 1 0 0
Легион - Greenway 01 апреля 2019 0 0 0 0 0
Шершни - Greenway 16 мая 2019 0 0 0 0 0
Greenway - ЖХК Хорс 20 мая 2019 2 1 1 0 0
ЖХК Хорс - Greenway 27 мая 2019 1 1 0 0 2
Greenway - ЖХК Хорс 31 мая 2019 1 0 1 1 0
SELECT tournament.id , tournament.name , tournament.hash , game_result_composition.player_id , game_result_composition.team_id , COUNT(game.id) AS game_count , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((game_result_score.player_id = game_result_composition.player_id) OR (assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_point , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND game_result_score.player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_goal , (SELECT COUNT(game_result_score.id) FROM game_result_score JOIN game ON game.id = game_result_score.game_id AND game.publish_results = 1 WHERE game_result_score.team_id = game_result_composition.team_id AND ((assistent1_id = game_result_composition.player_id) OR (assistent2_id = game_result_composition.player_id)) AND game.tournament_id = tournament.id ) AS player_assistent , (SELECT SUM(minute) FROM game_result_penalty JOIN game ON game.id = game_result_penalty.game_id AND game.publish_results = 1 WHERE game_result_penalty.team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_penalty ,( SELECT SUM(game_result_plus_minus.point) FROM game_result_plus_minus JOIN game ON game.id = game_result_plus_minus.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND player_id = game_result_composition.player_id AND game.tournament_id = tournament.id ) AS player_plus_minus , (SELECT SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_shoots , (SELECT SUM(goals_missed) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_goals_missed , (SELECT SUM(reflected_shoots) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_reflected_shoots , (SELECT SUM(reflected_shoots) / (SUM(shoot_1)+SUM(shoot_2)+SUM(shoot_3)) FROM game_result_goalkeeper JOIN game ON game.id = game_result_goalkeeper.game_id AND game.publish_results = 1 WHERE team_id = game_result_composition.team_id AND game.tournament_id = tournament.id AND player_id = game_result_composition.player_id) AS goalkeeper_percent , player_request.player_position_id , championship.name AS championship_name FROM game_result_composition JOIN game ON game.id = game_result_composition.game_id AND game.publish_results = 1 JOIN player_request ON player_request.id = game_result_composition.player_request_id JOIN tournament ON tournament.id = game.tournament_id JOIN championship ON championship.id = tournament.championship_id JOIN game_series ON game_series.id = game.game_series_id WHERE game_result_composition.player_id = '1192' AND tournament.season_id = '1' GROUP BY tournament.id ORDER BY tournament.id DESC
Сезон 2017-2018 М О Ш П +/- ШТ
Квалификационный 2018

Квалификационный 2018

Кубки РХЛ

3 0
ср.0
0
ср.0
0
ср.0
0
ср.0
2
ср.0.7
Соперники Дата матча О Ш П +/- ШТ
Шершни - Легион 17 июля 2018 0 0 0 0 0
Легион - Шершни 12 сентября 2018 0 0 0 0 0
Легион - СоюзОптТорг 25 июля 2018 0 0 0 0 2
И - матчи, О - очки, Ш - шайбы, П - передачи, ШТ - штрафное время

Три звезды

Сезон 2025-2026 И
Летний кубок 2025. 7-й дивизион. Плей-офф Летний кубок 2025. 7-й дивизион. Плей-офф 0 0 0 0
Предсезонный 2025, Группа B (6-й дивизион) Предсезонный 2025, Группа B (6-й дивизион) 0 0 0 0
Летний кубок 2025. 6-й дивизион Летний кубок 2025. 6-й дивизион 0 0 0 0
Летний кубок 2025. 7-й дивизион Летний кубок 2025. 7-й дивизион 0 0 0 0
Сезон 2024-2025 И
7-й Дивизион 7-й Дивизион 0 0 0 0
5-й дивизион 5-й дивизион 0 0 0 0
Группа B Группа B 0 0 0 0
Группа А Группа А 0 0 0 0
Сезон 2023-2024 И
MadGuyHockey Cup. Группа C (5-й дивизион) MadGuyHockey Cup. Группа C (5-й дивизион) 0 0 0 0
MadGuyHockey Cup. Группа А (7-й дивизион) MadGuyHockey Cup. Группа А (7-й дивизион) 0 0 0 0
5-й дивизион 5-й дивизион 0 0 0 0
Квалификационный 2023 Группа С (3-й дивизион) Квалификационный 2023 Группа С (3-й дивизион) 0 0 0 0
Сезон 2022-2023 И
MadGuyHockey Cup. Группа С (4-й дивизион) MadGuyHockey Cup. Группа С (4-й дивизион) 0 0 0 0
MadGuyHockey Cup. Группа А (СТАРТ) MadGuyHockey Cup. Группа А (СТАРТ) 0 0 0 0
4-й Дивизион 4-й Дивизион 0 0 0 0
Сезон 2021-2022 И
Дивизион СТАРТ Дивизион СТАРТ 0 0 0 0
Сезон 2020-2021 И
Предсезонный. Основная сетка Предсезонный. Основная сетка 0 0 0 0
Сезон 2018-2019 И
2-й Дивизион 2-й Дивизион 0 0 0 0
Сезон 2017-2018 И
Квалификационный 2018 Квалификационный 2018 0 0 0 0
И - матчи, - первая звезда матча, - вторая звезда матча, - третья звезда матча
в