SQL Server 約束

-- 設置主鍵自增長 --->關鍵字: identity(1,1)從1開始步長爲1 圖形操作:   程序操作: -- 主鍵設置:使用T-SQL定義主鍵 -- 定義非聚集主鍵約束:primary key nonclustered use testdemo001; go create table primarykey_test(  LogID int identity(1,1) NOT NULL,  
相關文章
相關標籤/搜索