TIL

9.3(2) 인덱스 컨디션 푸시 다운과 인덱스 확장

인덱스 컨디션 푸시 다운

SELECT * FROM employees
WHERE last_name='Action' AND first_name LIKE '%SAL';

인덱스 컨디션 푸시 다운 비활성화

id table type key key_len Extra
1 SIMPLE employees ix_lastname_firstname 66 Using where

인덱스 컨디션 푸시 다운 활성화

id table type key key_len Extra
1 SIMPLE employees ix_lastname_firstname 66 Using index condition

인덱스 확장(use_index_extensions)