I have the table with column type varchar as primary key; the primary is also clustered index. The value for primary key is prefix with either I or X, and follow with increasing number (I1, I2, I3, ..., X1, X2, X3, ...). The default sorting currently is like I1, I11, I111, I2, I21, I22, ....
Are there any way I can specify the sorting order for my primary key column by numerical order, when key is created and be inserted to tree; not in select query time? So the sorting order is I1, I2, I3, ..., I11, I12, I13
Thanks