InterviewSolution
Saved Bookmarks
| 1. |
What Is The Secondary Index? |
|
Answer» There is an INDEX created by default for the PRIMARY KEY of the table and that is called Primary Index. If you create, any other index that is called Secondary Index for that table. Secondary INDEXES are created to improve the PERFORMANCE of SELECT statements. There is an Index created by default for the Primary Key of the table and that is called Primary Index. If you create, any other index that is called Secondary Index for that table. Secondary Indexes are created to improve the performance of SELECT statements. |
|