I just executed the following script
CREATE TABLE Test
(
ID INT IDENTITY PRIMARY KEY,
Info nvarchar(50)
)
For my surprise, SSMS created a clustered index for the ID column. So, my question is why not a non-clustered index?
From my understanding, it would be must better to use in this case an non-clustered index, because due to the binary tree, it is much faster to look up an ID with the value of X instead of using the clustered index where the values are somehow grouped. Also, if I think about receiving data, the ID must be quickly accessed somehow. As in lot of articles written, the binary tree is the fasted way to receive a specific or multiple IDs. In addition to that, I see in most cases that the Primary Key of any Table is an ID with an autoincrementing value. So it is pretty common to use this approach of the autoincrementing principle.
So, what is the advantage of using a non-clustered key and why is this default in SSMS?