我有两个表:tbl_product
,tbl_product_category
我想制作一个带有关键字并返回与关键字匹配的所有产品和产品类别的API。
如果来自tbl_product
的结果,则它还返回它是乘积。
如果来自tbl_product_category
的结果也返回类别。
tbl_product_catagory.findAll({
raw: true,
attributes: [[sequelize.literal("catagory_name"), "type"]],
include: [{
model: tbl_product,
attributes: [[sequelize.literal(["product_name"]), "name"]],
required: false,
where: {
product_name: {
[Op.like]: "%" + data.word + "%"
}
}
}]
})
答案 0 :(得分:3)
答案 1 :(得分:3)
我知道这已经很老了,但我喜欢使用 nodejs 来解决这个问题,因为 sequelize 还没有联合支持。很简单,但有时我们没有意识到这一点:
示例:
Promise.all([
Blog.findAll({ include: { model: Author, required: true } }),
Blog.findAll({ include: { model: AnonymInfo, required: true } }),
]).then((modelReturn) => resolve(modelReturn.flat()))