본문 바로가기
DATABASE

mysql 인덱스 확인, 추가, 삭제

by 하이바네 2021. 4. 21.
반응형

인덱스란 속도에 매우 영향을 주는 중요한 녀석이다. 

DB쿼리를 만들고나면 where절에 들어가는 것들을 인덱스만 잘 걸어도 훨씬 빠르다. 정말로...

 

1. 인덱스 확인

show index from 'tablename'

ex) show index from test_table

 

2. 인덱스 추가

alter table 'tablename' add index 'indexname' (column1, column2...)

ex) alter table test_table add index test_idx (id,date)

 

3. 인덱스 삭제

alter table 'tablename' drop index 'indexname'

ex) alter table test_table drop index test_idx

 

 

간단하게 위의 정도만 알고 있어도 쓸곳이 많다. 

728x90

댓글