gpt4 book ai didi

SQL Server - 仅在值不同时更新

转载 作者:行者123 更新时间:2023-12-01 15:08:51 27 4
gpt4 key购买 nike

在 SQL Server 2008 中,如何仅在表中的值与更新语句中的值不同时更新表中的字段?

例如:

我的 TableA 的 FirstName 列的值为“Roger Moore”,唯一 ID 为“007”。现在,我正在调用一个更新语句,但它应该仅在值不是“Roger Moore”的情况下更新“FirstName”字段。

TIA

最佳答案

update TableA 
set FirstName = 'Roger Moore'
where ID = '007'
and FirstName <> 'Roger Moore'

关于SQL Server - 仅在值不同时更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2766520/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com