For example, I have UserId column which is identity column of my table. When I add new data to table, UserId assign 1 automatically. If enter new data, the number in the column increases one by one.
UserId - UserName - UserLastName
1        asd        asd
2        xyz        xyz
I want to change UserId's starting value and increase it by my condition.
UserId - UserName - UserLastName
US1        asd        asd
US2        xyz        xyz
Is it possible to increase string values like above ?