标签: sql sql-server tsql
我有一个名为CurrentMachine的表和10列。我目前将列[MachineId]作为主要identity(1,1)。我想改为将[MachineID]列自动更改为与[MachineName]列相同的值,而不是为ID添加1的增量。
CurrentMachine
[MachineId]
identity(1,1)
[MachineID]
[MachineName]
可以这样做吗?希望我在这里有意义......