in mysql, we can modify next sequence value to be inserted for new record by using ALTER TABLE contacts AUTO_INCREMENT = 50 then the insert statement will insert a new record with identity = 50 (or 51 I don't remember)
eg: if the table has 40 records and last Id inserted was 40 then the next identity value should be 41
I want to change the next value for next record should be 51 for example, by using alter statement above then next identity value will be 51
My question is how to implement this action in SQL server?