2021-04-07から1日間の記事一覧

インデックスアクセス3種

DB

MySQL (8.0.22) 通常のインデックススキャン→type=const or ref or range インデックスオンリースキャン→extra=Using index インデックスフルスキャン→type=index drop table tab1; create table tab1(col1 int, col2 int, col3 int, col4 int); alter table…