次の2つの更新ステートメントがあります。
update tb1
set col1=1
where id in ('1', '2', '3')
update tb1
set col1=0
where id not in ('1', '2', '3')
上記の2つの更新ステートメントを1つにまとめることはできますか?
次の2つの更新ステートメントがあります。
update tb1
set col1=1
where id in ('1', '2', '3')
update tb1
set col1=0
where id not in ('1', '2', '3')
上記の2つの更新ステートメントを1つにまとめることはできますか?