标签:color creat code 自增 span 递增 weight 主键 ima
Create Table Student ( id int identity(1,1) primary key )
identity:自增列
int identity(1,1):从1开始每次递增1
添加自动增长字段做主键
原文地址:http://www.cnblogs.com/songbird/p/7517995.html