How to create Index

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone tell me how to create index on a table so that it makes my
searches quicker. thanks.
 
Open the table in design view and select the field you want. In the general
properties tab you will see the "Indexed" property. You can change it there.

HTH
 
Query SQL:
CREATE INDEX myIndex On MyTable (myField)
or for unique index
CREATE UNIQUE INDEX myIndex On MyTable (myField)
or for primary key
CREATE UNIQUE INDEX myIndex On MyTable (myField) WITH Primary

You can also go into table design, locate the indexes button on the toolbar
& do it Wysiwyg

HtH

Pieter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Windows 10 How to sort an index created in Word 2013 0
How to create an index 2
Too Many Indexes Bug 5
Index - how to create/use an index in a quary 2
Create Index in Visual Basic 2
Multi-Field Index 7
Too many indexes 10
Outlook Outlook search 0

Back
Top