如何根据另一列更新具有增加 ID 的 sql server?
我有一个具有以下结构的表:
sn name val
test 0
test 0.5
test 2
test1 0
test1 0.5
test1 2
我如何更新它,这将是:
sn name val
1 test 0
2 test 0.5
3 test 2
1 test1 0
2 test1 0.5
3 test1 2