-
[TypeORM] Query Builder 사용해서 Group By, CountDB/TypeORM 2020. 11. 29. 17:28728x90
await this.commentRepository .createQueryBuilder('comment') .select('comment.postId AS postId') .addSelect('COUNT(*) AS commentCount') .groupBy('comment.postId') .getRawMany();
728x90'DB > TypeORM' 카테고리의 다른 글
[Typeorm] synchronize 옵션 활성화 시 이전 테이블 변경사항 적용 (0) 2022.02.01