Issue 위 ERD에서, Posts 에서..특정 postId를 가지는 데이터를 조회할 때, 필드로 postId, UserId, title, content, nickname을 찾고 싶다면 어떻게 해야할까? 우선 두 테이블을 userId 컬럼이 같은 기준으로 테이블을 조인하고, 각 데이터를 찾으면 될 것 같은데, Sequelize의 findOne 메서드를 사용해서 어떻게 구현해야 하는지가 문제였다. Try&Error 우선 처음 시도는 테이블 조인부터 해봤다. const post = await Posts.findOne({ attributes: [ "postId", "UserId", "title", "content", "createdAt", "updatedAt", ], include: [{ model: Use..