Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Express
- game
- MySQL
- 게임
- TypeScript
- Python
- AWS
- OCR
- JavaScript
- react
- class
- MongoDB
- Bull
- 정렬
- Sequelize
- Nest.js
- cookie
- dfs
- flask
- nestjs
- typeORM
- nodejs
- Dinosaur
- jest
- mongoose
- 자료구조
- GIT
- Queue
- 공룡게임
Archives
- Today
- Total
목록whereinids (1)
포시코딩
3월26일 - TypeORM의 whereInIds를 사용해 Sub Query 구현하기
개요 async getMeetups(page: number, keyword: string): Promise { const pageLimit = this.configService.get('MEETUPS_PAGE_LIMIT') || 9; return await this.createQueryBuilder('m') .select([ 'm.id', // ...생략 'm.createdAt', 'j', ]) .leftJoin('m.joins', 'j') .leftJoin('m.user', 'u') .where('m.title LIKE :keyword OR m.content LIKE :keyword', { keyword: `%${keyword}%`, }) .orderBy('m.id', 'DESC') .take(page..
TIL
2023. 3. 26. 17:22