标签:char not 主键 har name Servle nbsp tab 年龄
.设置主键自增长 sql语法如下: CREATE TABLE 表名(
id int identity(1,1) primary key not null,
sname char(8) NULL, /*姓名字段*/
sex char(2) NULL, /*性别字段*/
age int NULL, /*年龄字段*/
dept varchar(20) NULL/*系别字段*/
)
identity(1,1)
表示起始值1,每次自增1
标签:char not 主键 har name Servle nbsp tab 年龄
原文地址:https://www.cnblogs.com/rzkwz/p/12495609.html