Single-table query
This topic shows sample SET EXPLAIN output for a simple query and a complex query on a single table.
Partial SET EXPLAIN output for a simple
query shows SET EXPLAIN
output for a simple query.
Partial SET EXPLAIN output for a complex query shows SET EXPLAIN output for a complex query on the customer table.
The following output lines in Partial
SET EXPLAIN output for a complex query show the scope of the
index scan for the second query:
- Lower Index Filter: virginia.customer.customer_num >= 110
Start the index scan with the index key value of
110
. - Upper Index Filter: virginia.customer.customer_num <= 115
Stop the index scan with the index key value of
115
.