MySQL独自のパフォーマンス
クエリに「明確」を追加すると、クエリ時間が0.015秒から6秒以上に増加します。 外部キーを介してリンクされている複数のテーブルを結合し、そこから個別の列を取得したいと思います。 select distinct table3.idtable3 from table1 join table2 on table1.idtable1 = table2.fkey join table3 on table2.idtable2 = table3.fkey where table1.idtable1 = 1 明確なクエリは6秒かかりますが、これは改善できるようです。 選択あり: 期間:0.015秒/フェッチ:5.532秒(5.760.434行) 説明: id, select_type, table, partitions, type, possible_keys, key, key_len, ref, rows, filtered, Extra 1 SIMPLE table1 index asd asd 137 10 10.00 Using where; …