-
Notifications
You must be signed in to change notification settings - Fork 20
[BE] DB Indexing
xrabcde edited this page Sep 14, 2021
·
1 revision
show index from 테이블명;
create index 인덱스명 on 테이블명(컬럼명);
alter table 테이블명 add index 인덱스명(컬럼명);
alter table 테이블명 drop index 인덱스명;
- type 가 all이고 possible keys가 null이면
- type가 ref인 상태에서 possible_keys를 보면 해당 쿼리가 어느 인덱스를 타는지 확인이 가능
explain
select * from 테이블명 where name = ‘철수’;