sqlserver如果建表的時候不設自增,之后是沒法直接修改的,需要先刪再重設:
alter table 表名 drop column ID
alter table 表名 add ID int identity(1,1)
sqlserver如果建表的時候不設自增,之后是沒法直接修改的,需要先刪再重設:
alter table 表名 drop column ID
alter table 表名 add ID int identity(1,1)
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。