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 に実装するには、どこから始めたらよいか本当にわかりません。ヒントや方向性はありますか?
ありがとう