The id_num column of the below table is an auto increment column but what do the 2 numbers after the IDENTITY clause mean?

CREATE TABLE new_employees ( id_num int IDENTITY(100,10), fname varchar (20), minit char(1), lname varchar(30) )

 Posted by Bandi on 8/29/2017 | Category: Sql Server Interview questions | Views: 4383 | Points: 40
Select from following answers:
  1. increment,seed
  2. max value,seed
  3. seed, increment
  4. min value, seed
  5. All Above

Show Correct Answer


| Alert Moderator 

Comments or Responses

Login to post response