Query Plan - CI/CD用語集の定義
Query plan は、データベースのオプティマイザがクエリのために選ぶ実行戦略です。join の順序、どのインデックスを使うか、scan するか seek するかを含みます。EXPLAIN がそれを明らかにします。
関連ガイド
Index Scan - CI/CD Glossary DefinitionAn index scan reads rows by walking a database index instead of the whole table, jumping straight to matching…
Full Table Scan - CI/CD Glossary DefinitionA full table scan reads every row in a table to satisfy a query. Fine for small tables, but a common bottlene…
Prepared Statement - CI/CD Glossary DefinitionA prepared statement is a pre-parsed SQL template with bound parameters, reused across executions - it speeds…