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 |
Tags
- http
- 객체지향프로그래밍
- 자바
- 관점지향프로그래밍
- exception
- SQL
- git
- 스프링부트
- 스프링
- 디자인패턴
- Spring
- Filter
- java
- 인터셉터
- 트랜잭션
- network
- MYSQL
- OOP
- Redis
- mybatis
- aop
- response
- spring boot
- request
- proxy pattern
- RestControllerAdvice
- Spring Security
- aspect
- 스프링 시큐리티
- Interceptor
Archives
- Today
- Total
목록join (1)
장쫄깃 기술블로그
[MySQL] STRAIGHT_JOIN
STRAIGHT_JOIN MySQL에는 STRAIGHT_JOIN 이라고 하는 JOIN이 있다. STRAIGHT_JOIN is similar to JOIN, except that the left table is always read before the right table. This can be used for those (few) cases for which the join optimizer processes the tables in a suboptimal order. 왼쪽 테이블을 강제로 먼저 읽는 JOIN이라고 보면 될 것 같다. 간혹 explain을 이용하여 쿼리 실행계획을 보면 index가 적용되지 않고 쿼리 타입이 ALL로 실행되는 경우가 있다. 이는 MySQL의 옵티마이저(optimizer)가..
DataBase/MySQL
2022. 9. 12. 01:46