Mysql
 sql >> Database >  >> RDS >> Mysql

come ottenere oggetti simili in base ai tag

Questo restituirà un elenco di tutti i film che condividono almeno 1 tag con il dato <current_movie_id> ordinato per numero decrescente di tag in comune

SELECT movie.*, count(DISTINCT similar.tag) as shared_tags FROM movie INNER JOIN 
    ( tagged AS this_movie INNER JOIN tagged AS similar USING (tag) )
    ON similar.movie = movie.id
WHERE this_movie.movie=<current_movie_id>
AND   movie.id != this_movie.movie
GROUP BY movie.id
ORDER BY shared_tags DESC

spero che questo ti dia qualcosa con cui lavorare