Bienvenido al sitio de software libre de CUTE, editor de bases de datos para MS Access y SQL Server. Este proyecto necesita reanimación desde Marzo de 2013.

 

Se puede realizar mediante donaciones, patrocinio o ayuda en la instalación.

donate sponsor aided installation
 

O puedes ayudar escribiendo nuevas traducciones, un artículo en la wikipedia acerca del programa, comentarios en foros o blogs, añadir código o documentación, etc... En cualquier caso gracias.

Create Index (SQL)

The syntax for creating an index is:

CREATE [UNIQUE] INDEX index_name
    ON table_name (column1, column2, ... column_n)

UNIQUE indicates that the combination of values in the indexed columns must be unique.

For example:

CREATE INDEX customer_idx
    ON customer (customer_name);

In this example, an index has been created on the customer table called customer_idx. It consists of only of the customer_name field.

The following creates an index with more than one field:

CREATE INDEX customer_idx
    ON supplier (customer_name, country);

Content extracted from free documentation (Wikipedia and other sources).

Comments:

Add your comment:

Gender:
(Too weird, even outrageous perhaps?: try a regeneration)
Top of the page