在 Sql Server 中交换 ID

发布于 2024-11-18 19:35:25 字数 308 浏览 5 评论 0原文

我看了一下这个问题: sql 交换主键值

所以我得到了以下内容script:

UPDATE t, t as t2
SET t.id = t2.id, t2.id = t.id
WHERE t.id = 1 AND t2.id = 2

但我无法将其转换为有效的 SQL Server 语法。

请帮助我:)

提前致谢!

I took a look at the question: sql swap primary key values

So I got the following script:

UPDATE t, t as t2
SET t.id = t2.id, t2.id = t.id
WHERE t.id = 1 AND t2.id = 2

But i can not translate this to a valid SQL Server syntax.

Please help me :)

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不是你的备胎 2024-11-25 19:35:25

怎么样

UPDATE t SET t.id = (CASE t.id WHEN 1 THEN 2 ELSE 1 END)
WHERE t.id IN (1, 2)

What about

UPDATE t SET t.id = (CASE t.id WHEN 1 THEN 2 ELSE 1 END)
WHERE t.id IN (1, 2)
尸血腥色 2024-11-25 19:35:25

看起来您正在尝试将表与自身连接起来,以便可以一次更新两条记录。我不确定这是否可能,但肯定没有必要。

只需找到两条记录,然后从两个 id 之和中减去另一条记录即可计算出一条 id:(

update t
set id = (1 + 2) - id
where id = 1 or id = 2

注意:这要求键是数字。虽然这是最常见的情况,但某些非数字类型也可以用作键。)

It looks like you are trying to join the table against itself so that you can update two records at once. I'm not sure if it's possible, but it's certainly not needed.

Just locate the two records, and calculate one id from the other by subtracting it from the sum of the two ids:

update t
set id = (1 + 2) - id
where id = 1 or id = 2

(Note: This requires that the key is numeric. While this is the most common case, some non-numeric types can also be used as keys.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文