SQL语句
create table 表名(
 字段名1  int  primary key identity(1,1) --这是从1开始每次自动加1的自动编号

 字段....
 )

或者:

字段名1  int  identity(1,2) --这是从1开始每次自动加2的自动编号

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
  • 2021-11-13
相关资源
相似解决方案