[SQLServer]identityの初期値と増分を指定してCreate tableする

超まとめ

create table table_name(
  col_a int identity(<初期値>, <増分>)
);
create table table_name(
  col_a int identity(0, 1)
);

参照情報

コメントを残す