Oracle
1Z0-888 · Question #76
1Z0-888 Question #76: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-888 to reveal the answer and full explanation for question #76. The question stem and answer options stay visible for context.
Performance Tuning
Question
Consider:
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: Index_pop
key: Index_pop
key_len: 4
ref: NULL
rows: 10
Extra: Using where
What does the range value in the type column mean?Options
- AYou can use an index and return rows that fall within a range of values.
- BThe table will be scanned over a certain range of values.
- CThis type of index uses the range hash.
- DThere is a range of indexes that can be used.
Unlock 1Z0-888 to see the answer
You've previewed enough free 1Z0-888 questions. Unlock 1Z0-888 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#EXPLAIN output#Index types#Query optimization#Execution plans