Hi
I'm using MS Sql Server.
I have a table like this:
[Orders]
Id | SubTotal | Tax | Shipping | DateCreated
The Id column is set to autoincrement(1,1).
This is to be used in an E-commerce storefront. Sometimes a current E-commerce store is migrated to my platform and they already have Orders - which could mean that their current Order Id is e.g. 9586.
Then I want to have autoincrement start from that value.
How can I do this?