在 MS SQLServer 中交换两行,保留原始主键且无需手动更新
我有以下问题:我有一些行,
ID CODE NAME .........
1 h1100h1 Cool example1 .........
2 h654441 Another cool1 .........
我想交换它们,保留所有旧的主键和约束。 当然,我可以通过更新行轻松手动解决这个问题。 我想知道是否有人对此类问题有任何出色的解决方案,而不仅仅是手动执行更新命令。 我真的非常感谢任何建议或建议。
I have the following problem : I have rows like
ID CODE NAME .........
1 h1100h1 Cool example1 .........
2 h654441 Another cool1 .........
I would like to swap them retaining all old primary keys and constraints. Of course, I can easily solve this manually by updating the rows. I am kind of wondering whether anybody has any excellent solution for this kind of problem instead of just executing update command manually. I really really appreciate any suggestions or recommendations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有测试过这个,但我认为它会起作用。 我假设 id 是单列主键。 如果情况并非如此,那么您将需要稍微调整此代码以处理 PK。
I haven't tested this, but I think it will work. I'm assuming that id is a single-column Primary Key. If that's not the case then you will need to adjust this code slightly to handle the PK.
自加入更新是您唯一安全的选择
self join with an update is your only safe bet