Мне нужно получить trophies
, выигранный командой, каждый трофей достигается в соревновании определенного сезона, но команда может выиграть трофей для одного и того же соревнования в разные сезоны.
Iнаписал запрос, извлекающий трофеи из базы данных:
$sql = $this->db->prepare("SELECT t.*, s.*, c.*,
t.team_id as team_id,
s.id as season_id,
s.name as season_name,
c.id as competition_id,
c.name as competition_name
FROM team_trophies t
INNER JOIN competition_seasons s ON s.id = t.season_id
INNER JOIN competition c ON c.id = s.competition_id
WHERE team_id = :team_id
");
по сути, я выбрал все trophies
для конкретной команды из таблицы team_trophies
и присоединился к competition_seasons
для получения сведений о сезонеТрофей, то же самое для competition
таблицы.
Это работает, я получаю:
[
{
"team_id": "23291",
"season_id": "2",
"position": "Winner",
"wins": "4",
"id": "1093",
"competition_id": "1093",
"name": "Premier League",
"update_at": "2018-06-04 12:12:30",
"country_id": "1",
"category": "1",
"season_name": "2017",
"competition_name": "Premier League"
},
{
"team_id": "23291",
"season_id": "3",
"position": "Runner-up",
"wins": "1",
"id": "1093",
"competition_id": "1093",
"name": "Premier League",
"update_at": "2018-06-04 12:14:39",
"country_id": "1",
"category": "1",
"season_name": "2015",
"competition_name": "Premier League"
}
]
, но я бы возвратил результат, подобный этому:
[
{
"team_id": "23291",
"position": "Winner",
"wins": "4",
"id": "1093",
"competition_id": "1093",
"name": "Premier League",
"update_at": "2018-06-04 12:12:30",
"country_id": "1",
"category": "1",
"seasons": [
["season_name":"2017", "season_id":"2"],
["season_name":"2015", "season_id":"3"],
]
"competition_name": "Premier League"
}
]
как вы видите, у меня есть одна строка в результате, которая содержит seasons
этого трофея как array
, это более читабельно и позволяет избежать избыточности.
Возможно ли достичь этого с помощью sql
?Или мне нужно обойти с php
?
Спасибо.
ОБНОВЛЕНИЕ - СТРУКТУРА ТАБЛИЦЫ
CREATE TABLE IF NOT EXISTS `swp`.`competition` (
`id` INT NOT NULL,
`name` VARCHAR(255) NULL,
PRIMARY KEY (`id`),
ENGINE = InnoDB;
CREATE TABLE IF NOT EXISTS `swp`.`competition_seasons` (
`id` INT NOT NULL AUTO_INCREMENT,
`competition_id` INT NOT NULL,
`season_id` INT NULL,
`name` VARCHAR(45) NOT NULL,
`update_at` DATETIME NULL,
PRIMARY KEY (`id`),
INDEX `FK_competition_competition_seasons_competition_id_idx` (`competition_id` ASC),
CONSTRAINT `FK_competition_competition_seasons_competition_id`
FOREIGN KEY (`competition_id`)
REFERENCES `swp`.`competition` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE TABLE IF NOT EXISTS `swp`.`team_trophies` (
`team_id` INT NOT NULL,
`season_id` INT NOT NULL,
`position` VARCHAR(255) NOT NULL,
`wins` INT NOT NULL,
INDEX `FK_team_team_trophies_team_id_idx` (`team_id` ASC),
INDEX `FK_season_team_trophies_season_id_idx` (`season_id` ASC),
CONSTRAINT `FK_team_team_trophies_team_id`
FOREIGN KEY (`team_id`)
REFERENCES `swp`.`team` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `FK_season_team_trophies_season_id`
FOREIGN KEY (`season_id`)
REFERENCES `swp`.`competition_seasons` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- Some INSERTs
INSERT INTO `team_trophies` (`team_id`, `season_id`, `position`, `wins` VALUES (23291, 2, 'Winner', 4), (23291, 3, 'Runner-up', 1);
INSERT INTO `competition` (`id`, `country_id`, `name`, `category`) VALUES (1093, 1, 'Premier League', 1);
INSERT INTO `competition_seasons` (`id`, `competition_id`, `season_id`,
`name`, `update_at`) VALUES
(1, 1093, 14963, '2018', '2018-06-04 12:10:28'),
(2, 1093, 13198, '2017', '2018-06-04 12:12:30');