我在sybase中遇到了问题。
通过在stackoverflow中搜索,我找到了this链接。
但我在sybase中发现不正确,这给了我一个语法错误警告。 有没有其他方法可以更改sybase中的主键?
答案 0 :(得分:0)
我们可以使用sp_dropkey删除密钥,使用sp_primarykey添加主键。
sp_dropkey primary, MyTable
sp_primarykey MyTable, col1, col2,..,col8
答案 1 :(得分:0)
1-使用:
sp_helpconstraint S87EntityFolderMap
获取主键系统生成的名称
2-然后使用alter table删除它:
alter table S87EntityFolderMap drop constraint name_from_first_step