我需要用sequelize执行这个多LEFT JOIN查询:
SELECT movie, genre FROM `yt_movies` M
LEFT JOIN `genres_link` GL ON M.id = GL.movie_id
LEFT JOIN `genres` G ON GL.genre_id = G.id
WHERE M.id = 1098
我试过了
const YtMovies = db.yt_movies;
const Genres = db.genres;
const GenresLink = db.genres_link;
YtMovies.hasMany(GenresLink, { as: 'GL', foreignKey: 'movie_id' });
YtMovies.hasMany(Genres, { as: 'G', foreignKey: 'genre' });
const res = await db.yt_movies.findAll({
attributes: ['movie'],
where: { id: movie_id },
include: [
{
model: db.genres_link,
as: 'GL',
required: false,
attributes: ['genre_id'],
},
{
model: db.genres,
required: false,
as: 'G',
attributes: ['genre'],
},
],
});
返回的查询看起来像
SELECT
`yt_movies`.`id`,
`yt_movies`.`movie`,
`GL`.`id` AS `GL.id`,
`GL`.`genre_id` AS `GL.genre_id`,
`G`.`id` AS `G.id`,
`G`.`genre` AS `G.genre`
FROM `yt_movies` AS `yt_movies`
LEFT OUTER JOIN `genres_link` AS `GL` ON `yt_movies`.`id` = `GL`.`movie_id`
LEFT OUTER JOIN `genres` AS `G` ON `yt_movies`.`id` = `G`.`genre`
WHERE `yt_movies`.`id` = 1098;
在最后两个字符串中,我们可以看到它与yt_movies
一起使用ON,但我希望它与genres_link
一起使用ON
LEFT JOIN `genres` AS G ON GL.genre_id = G.id <-- expected
我想我真的不理解表关联并搞砸了hasMany或者我想念另一个声明
表格看起来像
yt_movies
| id | movie | pj | pq|
|----|---------|----|---|
| 1 |Avatar | | |
| 2 |Predator | | |
| 3 |... | | |
genres_link
| id | genre_id| movie_id |
|----|---------|----------|
| 1 | 12 | 1 | // avatar
| 2 | 13 | 2 | // predator
| 3 | 14 | 2 | // predator
流派
| id | genre |
|----|----------|
| 12 | action |
| 13 | thriller |
| 14 | horror |
我所做的只是设法执行第一次LEFT JOIN ...添加第二次包括没有帮助,我害怕即使在阅读文档之后我也没有真正地解决表格关联:
我想我需要使用belongsToMany,但此刻我不明白如何:))
我感谢所有的帮助!谢谢,哈利普!
要加入A-> B-> C,您应该将C的include包含在B的include中,例如:
A.findAll({
include: [
{
model: B,
include: [
{model: C}
]
}
]
})
但是,如果表格genres_link没有除电影和流派的PK之外的其他属性,那么请使用。
YtMovies.belongsToMany(Genres, {through: GenresLink, foreignKey: 'movie_id' });
Genres.belongsToMany (YtMovies,{through: GenresLink, foreignKey: 'genre_id '});
YtMovies.findAll({
include: [
{
model: Genres,
required : true,
through: GenresLink
}
]
});
manual有一些关于这个主题的有用信息......