1

我正在尝试对 sql 表进行大规模更新,但我不理解逻辑等价物。我想要用伪代码做的是:

UPDATE mytable
SET mycolumn = (pull down the datetime from mycolumn2. if the year of that datetime is not equal to 2013, then mycolumn = 24. if the year is 2013, then mycolumn = 24 - number of months in that datetime)

我只是真的不确定从哪里开始在 SQL 中实现这种逻辑。有人对我有任何提示或方向吗?

谢谢

4

3 回答 3

1
UPDATE myTable
SET mycolumn = CASE WHEN DATEPART(year, mycolumn2) = 2013 
                        THEN 24 - DATEPART(month, mycolumn2) 
                    ELSE 24 
               END

根据需要调整 RDBMS 的日期语法。

于 2013-03-01T16:47:09.263 回答
0
UPDATE mytable
SET mycolumn = CASE WHEN YEAR(mycolumn2) <> 2013 
                    THEN 24
                    WHEN YEAR(mycolumn2) = 2013 
                    THEN 24 - mycolumn
                END
于 2013-03-01T16:47:35.223 回答
0

使用Simple Case语句:

update mytable
set mycolumn = 24 - case year(mycolumn2) 
                        when 2013 then  month(mycolumn2)
                        else 0 
                    end
于 2013-03-01T16:58:57.367 回答