ケースを使用して複数の列を更新しています。いつまでに処理されなかったケースに対しては何のアクションも取らないようにしたい。これは開始終了を使用して達成できると読みましたが、これは私には機能しません。
私の構文は次のとおりです。
update site_configuration set value =
case
when attribute_name="hostname" then "abcdef"
when attribute_name="backend" then "ab"
when attribute_name="col" then "col"
else
begin
end
end case
where uid="abcdef";
この構文は正しく見えますか?
ありがとう