Collections:
What Are Indexes in SQL Server
What Are Indexes in SQL Server?
✍: FYIcenter.com
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:
As shown in the above picture, locating the rows of company_num = 17 can be done much faster through the index.
⇒ CREATE INDEX - Adding an Index on an Existing Table in SQL Server
⇐ Understanding and Managing Indexes in SQL Server
2016-11-15, 3888🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in SQL Server? If a subquery is used in a ...
How To Divide Query Output into Multiple Groups with the GROUP BY Clause in SQL Server? Sometimes, y...
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...