Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CREATE INDEX IN SQL

Status
Not open for further replies.

KUZZ

Technical User
Aug 13, 2002
254
GB

The following expression is good when I want one primary index:

CREATE INDEX idxPT ON tbl_PRIO_UCA([PT#])With PRIMARY;

what would the syntax be on creating a double index on the table, one for field PT# and another one for field REV
Good luck,
Kuzz

"Time spent debating the impossible subtracts from the time during which you
can try to accomplish it."
 
Got is myself

CREATE INDEX idxPT ON tbl_PRIO_UCA([PT#],[REV]) With PRIMARY;
Good luck,
Kuzz

"Time spent debating the impossible subtracts from the time during which you
can try to accomplish it."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top