Q15
Single choice
Consider the following:
mysql> EXPLAIN SELECT Name FROM Country WHERE Population BETWEEN 1 AND 10000\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: Country type:
range possible_keys:
i_pop key: i_pop
key_len: 4
ref: NULL
rows: 10
Extra: Using where
What is the meaning of the range value of the type column?