SQLServer简单数据库表的创建

use StudentManagement go  if exists(select * from sysobjects where name = 'Students') drop table Students go create table Students ( StudentId int identity(10000,1) primary key,--自动标识列,系统自动生成,10000是起始
相关文章
相关标签/搜索