Query Plan - Definição do Glossário de CI/CD
Um query plan é a estratégia de execução que o otimizador do banco de dados escolhe para uma consulta: a ordem dos joins, quais índices usar e se deve fazer scan ou seek. O EXPLAIN o revela.
Guias relacionados
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…