About 317,000 results
Open links in new tab
  1. SQL CREATE INDEX Statement - W3Schools

    SQL CREATE INDEX Statement The CREATE INDEX statement is used to create indexes in tables. Indexes are used to retrieve data from the database more quickly than otherwise. The …

  2. CREATE INDEX (Transact-SQL) - SQL Server | Microsoft Learn

    Creates a relational index on a table or view. Also called a rowstore index because it is either a clustered or nonclustered B-tree index. You can create a rowstore index before there is data in …

  3. SQL CREATE INDEX Statement - GeeksforGeeks

    Nov 22, 2025 · The CREATE INDEX statement in SQL is used to create indexes on tables to speed up data retrieval. Indexes work in the background to improve query performance and …

  4. SQL CREATE INDEX (With Examples) - Programiz

    In this tutorial, you will learn about the SQL CREATE INDEX statement with the help of examples.

  5. SQL Server CREATE INDEX Statement

    Introduce the nonclustered indexes and show how to use the SQL Server CREATE INDEX statement to create nonclustered indexes.

  6. SQL CREATE INDEX - w3schools.am

    Indexes are used to retrieve data from the database very fast. The users cannot see the indexes, they are just used to speed up searches/queries. The following SQL creates an index named …

  7. A Complete Guide to the SQL CREATE INDEX Statement

    Mar 5, 2025 · Let’s learn everything you need to know about the SQL CREATE INDEX statement to master the art of database indexing.

  8. SQL IndexesSQL Tutorial

    The CREATE INDEX statement creates a new index with the name index_name on the table table_name. The column column_name is the column on which the index is being created.

  9. SQL - CREATE INDEX Statement - Online Tutorials Library

    The CREATE INDEX statement in SQL is used to create indexes on one or more columns of a table. An index allows the database to find and access rows much faster than scanning the …

  10. Create an Index in SQL Server - Database.Guide

    Aug 24, 2024 · In SQL Server, indexes can be created in several different situations. For example, when we create a primary key or a UNIQUE constraint, an index is created behind …