English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

For the column Custno and in a Customer table

2007-03-08 10:54:45 · 4 answers · asked by Anonymous in Computers & Internet Programming & Design

4 answers

Build it in access using a Query, do to view, view sql.

2007-03-08 11:03:11 · answer #1 · answered by Anonymous · 0 0

create index iCustNo on Customer (Custno)

if you want the index to be unique as in this table custno would be unique, use following

create unique index iCustNo on Customer (Custno)
This will prevent creating duplicate custnumbers in the table.

2007-03-08 22:32:41 · answer #2 · answered by gn 1 · 0 0

Format is
CREATE INDEX index_name
ON table_name (column_name)

Example is
CREATE INDEX idx_CustNo
ON Customer (Custno)

2007-03-08 21:10:29 · answer #3 · answered by Math Guy 4 · 0 0

CREATE INDEX IDX_CUSTOMER_CUSTNO
ON CUSTOMER(CUSTNO);

2007-03-12 12:23:52 · answer #4 · answered by Victor Almeida 1 · 0 0

fedest.com, questions and answers