-
nodejs 시퀄라이즈 where절에 or사용하기NULL STACK 2019. 5. 15. 17:29반응형
node 시퀄라이즈 사용중 where절에서 or사용하기
where절에서 원하는 조건을 쓰다가 or절이 필요할 때
Sequelize.Op.or로 적어주면 괄호로 연산한다음 다른 조건과 AND로 처리해 준다.
return this.findAll({ attributes: [ items, names, num, ], where: { items, [Sequelize.Op.or]: [{ names: 1, }, { num: 1, }], }, });
반응형