HI,
Command:
CREATE INDEX myIndex ON myTable(myColumn)
What type of Index will get created after executing the above statement?
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Feb 2, 2012, 10:14 PM
It will create a Non-clustered index.By default a clustered index gets created on the primary key.
Thanks