Please consider the following project table:
Project:
table: project
manyToMany:
themes:
targetEntity: Theme
inversedBy: projects
joinTable:
name: project_theme
joinColumns:
project_id:
referencedColumnName: id
inverseJoinColumns:
theme_id:
referencedColumnName: id
platforms:
targetEntity: Platform
joinTable:
name: project_platform
joinColumns:
project_id:
referencedColumnName: id
inverseJoinColumns:
platform_id:
referencedColumnName: id
manyToOne:
client:
targetEntity: Client
As you can see a project has three relations; themes through the project_theme join table, platforms through the project_platform table and clients through a client_id column.
I'm trying a produce a query which will find all related projects - projects with the same themes, platforms or clients - and order them by a 'score'.
For example:
Project A: Themes: 18, 19 Platforms: 1, 4 Client: 22
Find related projects to Project A..
Project D: Themes: 18, 19 Platforms: 1, 4 Client: 22 Score: 5
Project G: Themes: 18, 21 Platforms: 3, 4 Client: 22 Score: 3
Project B: Themes: 8, 21 Platforms: 2, 4 Client: 1 Score: 1
I'd really appreciate some assistant with writing a MySQL query for this. I've been struggling for a while with the following - but I'm probably miles off:
SELECT
`project`.*,
GROUP_CONCAT(`project_theme`.`theme_id`) as themes,
GROUP_CONCAT(`project_platform`.`platform_id`) as platforms,
`project`.`client_id` as client
FROM `project`
LEFT JOIN `project_theme` ON `project`.`id` = `project_theme`.`project_id`
LEFT JOIN `project_platform` ON `project`.`id` = `project_platform`.`project_id`
GROUP BY `project`.`id`
Many thanks in advance for any help
Pete