update t2 set t2.f3=t1.f3 where t1.f1=t2.f1;

解决方案 »

  1.   

    sorry,改一下
    update t2 set t2.f3=(select t1.f3 from t1 where t1.f1=t2.f1);
      

  2.   

    sorry,改一下
    update t2 set t2.f3=(select t1.f3 from t1 where t1.f1=t2.f1);
      

  3.   

    update t2 set t2.f3 = 
    (select f3 from t1 
    where t1.f1=t2.f1)
      

  4.   

    update t1 set t1.f3 = (select t2.f3 from t2 where t2.f1 = t1.f1);
      

  5.   

    update t1 a set f3 = (select f3 from t2 where f1=a.f1);
      

  6.   

    update t1 a set f3 = (select f3 from t2 where f1=a.f1);