ฉันใช้ 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 ได้อย่างไร
SELECT * FROM posts JOIN users ON users.id = posts.user_id WHERE users.year_birth = 1984