const product = await Products.findAll({
attributes: ["id", "title", "content", "status", "createdAt"],
include: [
{
model: Signs,
attributes: ["nickname"],
},
],
});
Products와 Sings조인하기
const product = await Products.findOne({
where: {
id: productId,
},
attributes: ["id", "title", "content", "status", "createdAt"],
include: [
{
model: Signs,
attributes: ["nickname"],
},
],
});
Products id와 같은 것은 찾는다 where절로
그리고 Signs와 조인한다.