在Node.js 上使用Sequelize 連接查詢
問題:
問題:
解:1.內部聯結:
要執行內部聯接,我們在查詢模型時指定include選項。此選項可讓我們指定要加入的相關模型。預設情況下,Sequelize 執行左外連接,因此我們需要將內連接所需的選項設為 true。
Posts.findAll({ include: [{ model: User, required: true }] }).then(posts => { // Process and return the posts along with the user information. });
2。左外連接:
要執行左外連接,我們省略必需的選項或在包含選項中將其設定為 false。這將使我們能夠檢索所有帖子,包括那些沒有關聯用戶的帖子。
Posts.findAll({ include: [{ model: User, required: false }] }).then(posts => { // Process and return the posts, including those without user information. });
3.過濾連接結果:
Posts.findAll({ include: [{ model: User, where: { year_birth: 1984 } }] }).then(posts => { // Process and return the posts belonging to users born in 1984. });
4。複雜連線條件:
Posts.findAll({ where: { name: "Sunshine" }, include: [{ model: User, where: ["year_birth = post_year"] }] }).then(posts => { // Process and return the posts matching the specified conditions. });
以上是如何在 Node.js 上使用 Sequelize 執行連線查詢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!