How to create index in MS ACCESS programatically

You run a query that looks like this:
CREATE INDEX [IndexName] ON [TableName]([ColumnName])

There are probably some other forms, such as multiple columns if Access supports them. Check the MS Access help.

-ner
 
You run a query that looks like this:
CREATE INDEX [IndexName] ON [TableName]([ColumnName])

There are probably some other forms, such as multiple columns if Access supports them. Check the MS Access help.

-ner
 
Back
Top