Mirror

Using indexes with InterBase (Views: 714)


Problem/Question/Abstract:

Using indexes with InterBase

Answer:

The types of indexes and the best choice depends on the DBMS. The following has been found for InterBase.

create indexes on columns that are used in where or join clauses of your SQL statements

if you use ORDER BY constructs, have an (compound) index of fields in the same order as in the ORDER BY construct

if you combine conditions with OR, you may want to have single indexes on each field of your conditions

select * from t where col1 =

<< Back to main page