Interviewer And Interviewee Guide

MS SQL Server Interview Question:

What Are Indexes in MS SQL Server?

Submitted by: Administrator
An index is a secondary database object associated with a table to improve the retrieval performance of rows from that table.

An index can be defined for a single column or multiple columns of a given table. If an index is defined on a single column of a table, the index can be viewed as ordered map between all values in that column and their row locations in the table. For examples, if you have table with a column called "company_num" and you created an index for that column. The contents of the table and the index may look like what is presented in the following picture:
Table Index Diagram

As shown in the above picture, locating the rows of company_num = 17 can be done much faster through the index.
Submitted by: Administrator

Read Online MS SQL Server Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.