SQL Server常用操作(待续)

-- SQL Server 增加自增ID列
alter table tablename add id int identity(1,1)
原文地址:https://www.cnblogs.com/hankleo/p/15333678.html