[82] 부트캠프 TIL - 본캠프 63일차

2024. 11. 20. 20:44부트캠프 TIL

728x90

1. leetcode 사용

1-1)  sql 문제 : Product Sales Analysis I
ㄴ 문제 : 상품과 세일 테이블을 참조하여 상품의 년도, 금액, 상품명을 출력해주세요.



문제풀이)

1) 문제를 읽고 필요한 조건들을 체크한다
- 년도, 금액, 상품명

- 년도, 금액은 Sales테이블, 상품명은 Product테이블에서 가져온다.
 
2) 테이블 참조하기
- LEFT JOIN을 활용해서 두 테이블을 서로 연동해줘야한다.

 

3) 최종 완성 쿼리문
-

SELECT a.year, a.price, b.product_name

FROM Sales a LEFT JOIN Product b ON a.product_id = b.product_id

2. 블로그 포스팅 시작(JPA-PLUS 및 Spring Security, QueryDSL)

https://kuk1938.tistory.com/213

 

[18] Spring - QueryDSL 사용방법

📁️ github 참고https://github.com/kuk1157/spring-plus/commit/05cae3c4514c95331958ca1f9303da8c52a5985b refactor: 레벨 2_8 QueryDSL로 변경 · kuk1157/spring-plus@05cae3c- gradle QueryDsl 의존성 추가 - JPAQueryFactory bean등록, Custom, Imp

kuk1938.tistory.com

 

728x90