gpt4 book ai didi

sql - 如何更改表的身份规范是身份 SQL Server

转载 作者:行者123 更新时间:2023-12-02 09:17:16 24 4
gpt4 key购买 nike

<小时/>

不工作

ALTER TABLE ProductInProduct ALTER COLUMN Id KEY IDENTITY (1, 1);

检查图像

我有一个表 ProductInProduct 希望它的 id 应该是唯一的.. enter image description here

最佳答案

无法将现有列“转换”为IDENTITY列 - 您必须创建一个新列作为INT身份:

ALTER TABLE ProductInProduct 
ADD NewId INT IDENTITY (1, 1);

更新:

好的,所以一种将现有列转换为IDENTITY的方法。如果您绝对需要这个 - check out this response by Martin Smith以及所有血淋淋的细节。

关于sql - 如何更改表的身份规范是身份 SQL Server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17291680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com