sql如下:
update emp a set amnt =
(select (fee)/6 from fee b
  where a.empid = b.empid
  and begindate >= to_date('200602','yyymmdd')
)
where exists (select 1 from fee where a.empid = b.empid);
emp有40多万条记录,fee表更多,更新了n久都没有更新完.请问各位大侠有什么好的方法,谢谢!