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, 4196🔥, 0💬
Popular Posts:
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...