发布网友 发布时间:2022-04-30 14:10
共4个回答
热心网友 时间:2022-04-14 18:03
可以用 decode热心网友 时间:2022-04-14 19:21
update table set b= decode(a,2,1,0)热心网友 时间:2022-04-14 20:56
update table set b=case when DBMS_RANDOM.VALUE(0,10)<7 then a when DBMS_RANDOM.VALUE (0, 10) between 7 and 9 then 1 else 0 end where a=2热心网友 时间:2022-04-14 22:47
用decode可以。