해당 영상을 보고 정리한 글입니다.https://www.youtube.com/watch?v=aQpa3hm9gE0 Clustered IndexEach InnoDB table has a special index called the clustered index that stores row data.Typically, the clusterd Index is synonymous with the primary key.InnoDB는 클러스터 인덱스라는 특별한 인덱스가 있고, 이는 primary key와 같다. (=동의어이다) 인덱스의 동작을 memtal representation으로 설명한 것.데이터가 추가되면, 인덱스가 정렬되고, 이 인덱스는 각각의 row를 가리킨다.하지만 실제 InnoDB의 동작은 이렇지 않..