create table 表名(id int identity(参数一,参数二)参数一 初始值参数二 每次增量
如果是SQL server的话,可以在列属性定义后面加 indentity(1,1)
indentity(1,1) 第一个1标识起始值 第二个值表示标识种子