InterviewSolution
Saved Bookmarks
| 1. |
In a single table (with 10 columns) join query the number of values needed to examine per column is __________(a) 1(b) 10(c) 0(d) 2I had been asked this question by my college professor while I was bunking the class.This is a very interesting question from Using Indexing in division Query Optimization of MySQL |
|
Answer» RIGHT ANSWER is (b) 10 For EXPLANATION I would say: For indexing in the context of performing joins, in a single table query, the number of values that are needed to be examined per COLUMN is the number of rows in the table. |
|