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是起始
相關文章
相關標籤/搜索