0

I have a table with in my sql server database that is a key field which consists of a number (ex. 1-50,000). Is there a way to insert that key number into the database when entering data and start from the last known value?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
developthestars
  • 185
  • 1
  • 12
  • 27

1 Answers1

0

Set the Identity Seed value of your field to the number you want to start from

ex. if you want to start from 10000 so your next value will be 10001,

identity seed

AmmarR
  • 248
  • 1
  • 11