添加自动增长字段做主键
Posted songbird
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加自动增长字段做主键相关的知识,希望对你有一定的参考价值。
Create Table Student ( id int identity(1,1) primary key )
identity:自增列
int identity(1,1):从1开始每次递增1
以上是关于添加自动增长字段做主键的主要内容,如果未能解决你的问题,请参考以下文章
Posted songbird
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加自动增长字段做主键相关的知识,希望对你有一定的参考价值。
Create Table Student ( id int identity(1,1) primary key )
identity:自增列
int identity(1,1):从1开始每次递增1
以上是关于添加自动增长字段做主键的主要内容,如果未能解决你的问题,请参考以下文章