1.

What Are Indexes Used For?

Answer»
  1. Indexes enable faster access to the ROWS of a table.
  2. You can build indexes for a single column or for a SEQUENCE of COLUMNS.
  3. The definition of indexes determines whether the column value of DIFFERENT rows in the indexed columns must be UNIQUE or not (UNIQUE or NON-UNIQUE index).
  4. An assigned index name and the table names must be unique. Therefore, there can be several indexes with the same name for each database user or scheme, but not for the same table.



Discussion

No Comment Found