update case when exists的相關文章
update case when exists的相關商品

Update column based on whether a row exists in another column ...
瀏覽:415
日期:2025-04-25
Join Date: Jan 2003; Posts: 4,139. Try this: Code: update t1 set b = case when
exists (select 1 from T2 where T2.C = T1.A) then 'Y' else 'N' end....看更多