标签: sql sql-server-2008 sql-server-2012-express
我正在使用SQL Server 2012,我想在我的主键上添加一个自动增量我不知道确切的语法,所以我试过这个,但它显然不起作用!
请帮助!!!
ALTER TABLE dbo.Equipe alter numero_equipe add IDENTITY(9999,1)
答案 0 :(得分:4)
解决语法问题的方法不是在它碰巧工作之前推动字符,而是阅读(优秀的)在线文档。它们指定语法并给出示例。搜索也有助于回答琐碎的问题。
您可以使用SWITCH:http://blogs.msdn.com/b/dfurman/archive/2010/04/20/adding-the-identity-property-to-a-column-of-an-existing-table.aspx
SWITCH
存在功能请求的连接项:https://connect.microsoft.com/SQLServer/feedback/details/800127/allow-for-changes-to-the-identity-property-with-simple-syntax-and-metadata-operation-like-performance(请投票)。