update b set bc1 = ( select ac1 from a where a.aid = b.bid)where exists (select 1 from ac1 where a.aid = b.bid)
UPDATE b SET b.bc1=a.ac1 WHERE a.aid=b.bid
update b,aset b.bc1=a.ac1where b.bid=a.id;
update b set b.bid=a.ac1 where a.aid=b.bid
q