create table stud(
Student_Id int primary key,
Student_Name varchar(30),
Student_surname varchar(12),
Student_Initial varchar(10))
我已經創建了一個表螺柱。現在我想的身份加入到student_id數據列使用ALTER查詢在SQL SERVER 2008中向列添加IDENTITY
alter table stud alter column student_Id int identity
我得到錯誤的關鍵字「身份」附近
不正確的語法。
查看http://stackoverflow.com/questions/1049210/adding-an-identity-to-an-existing-column – user2864740