我正在使用sequelize ORM;一切都很棒,很干净,但是当我使用join
查询时,我遇到了问题。
我有两个模型:用户和帖子。
var User = db.seq.define('User',{
username: { type: db.Sequelize.STRING},
email: { type: db.Sequelize.STRING},
password: { type: db.Sequelize.STRING},
sex : { type: db.Sequelize.INTEGER},
day_birth: { type: db.Sequelize.INTEGER},
month_birth: { type: db.Sequelize.INTEGER},
year_birth: { type: db.Sequelize.INTEGER}
});
User.sync().success(function(){
console.log("table created")
}).error(function(error){
console.log(err);
})
var Post = db.seq.define("Post",{
body: { type: db.Sequelize.TEXT },
user_id: { type: db.Sequelize.INTEGER},
likes: { type: db.Sequelize.INTEGER, defaultValue: 0 },
});
Post.sync().success(function(){
console.log("table created")
}).error(function(error){
console.log(err);
})
我想要一个用帖子回复的查询,其中包含创建它的用户的信息。在原始查询中,我得到了这个:
db.seq.query('SELECT * FROM posts, users WHERE posts.user_id = users.id ').success(function(rows){
res.json(rows);
});
我的问题是如何更改代码以使用ORM样式而不是SQL查询?
答案 0 :(得分:89)
User.hasMany(Post, {foreignKey: 'user_id'})
Post.belongsTo(User, {foreignKey: 'user_id'})
Post.find({ where: { ...}, include: [User]})
哪个会给你
SELECT
`posts`.*,
`users`.`username` AS `users.username`, `users`.`email` AS `users.email`,
`users`.`password` AS `users.password`, `users`.`sex` AS `users.sex`,
`users`.`day_birth` AS `users.day_birth`,
`users`.`month_birth` AS `users.month_birth`,
`users`.`year_birth` AS `users.year_birth`, `users`.`id` AS `users.id`,
`users`.`createdAt` AS `users.createdAt`,
`users`.`updatedAt` AS `users.updatedAt`
FROM `posts`
LEFT OUTER JOIN `users` AS `users` ON `users`.`id` = `posts`.`user_id`;
上面的查询与您发布的内容相比可能看起来有点复杂,但它的作用基本上只是对users表的所有列进行别名,以确保在返回时将它们放入正确的模型中并且不与帖子混淆模型
除此之外,您会注意到它执行JOIN而不是从两个表中选择,但结果应该相同
进一步阅读:
答案 1 :(得分:66)
虽然接受的答案在技术上不是错误的,但它并没有回答原始问题,也没有回答评论中的后续问题,这就是我来这里寻找的问题。但我明白了,所以这里就是。
如果要查找具有用户(并且只有拥有用户的用户)的所有帖子,其中SQL将如下所示:
SELECT * FROM posts INNER JOIN users ON posts.user_id = users.id
在语义上与OP的原始SQL相同:
SELECT * FROM posts, users WHERE posts.user_id = users.id
那么这就是你想要的:
Posts.findAll({
include: [{
model: User,
required: true
}]
}).then(posts => {
/* ... */
});
设置为true是生成内部联接的关键。如果你想要一个左外连接(你获得所有帖子,无论是否有用户链接),然后将所需更改为false,或将其保留为关闭,因为这是默认值:
Posts.findAll({
include: [{
model: User,
// required: false
}]
}).then(posts => {
/* ... */
});
如果您想查找属于出生年份为1984年的用户的所有帖子,您需要:
Posts.findAll({
include: [{
model: User,
where: {year_birth: 1984}
}]
}).then(posts => {
/* ... */
});
请注意,只要在。
中添加where子句,默认情况下为true如果您想要所有帖子,无论是否有用户附加,但是如果有用户,那么只有1984年出生的用户,然后将所需的字段添加回来:
Posts.findAll({
include: [{
model: User,
where: {year_birth: 1984}
required: false,
}]
}).then(posts => {
/* ... */
});
如果你想要名字所在的所有帖子" Sunshine"并且只有它属于1984年出生的用户,你才能这样做:
Posts.findAll({
where: {name: "Sunshine"},
include: [{
model: User,
where: {year_birth: 1984}
}]
}).then(posts => {
/* ... */
});
如果你想要名字所在的所有帖子" Sunshine"并且只有当它属于与帖子上的post_year属性匹配的同一年出生的用户时,您才能这样做:
Posts.findAll({
where: {name: "Sunshine"},
include: [{
model: User,
where: ["year_birth = post_year"]
}]
}).then(posts => {
/* ... */
});
我知道,有人会在他们出生的那一年发帖,但这仅仅是一个例子 - 坚持下去是没有意义的。 :)
我(主要)从这个文档中找到了这个:
答案 2 :(得分:3)
Model1.belongsTo(Model2, { as: 'alias' })
Model1.findAll({include: [{model: Model2 , as: 'alias' }]},{raw: true}).success(onSuccess).error(onError);
答案 3 :(得分:0)
就我而言,我做了以下事情。在UserMaster userId 是PK,在UserAccess userId 是UserMaster的FK
UserAccess.belongsTo(UserMaster,{foreignKey: 'userId'});
UserMaster.hasMany(UserAccess,{foreignKey : 'userId'});
var userData = await UserMaster.findAll({include: [UserAccess]});