update A 
set A.BizNetPoint_MostlyWare=B.BizNetPoint_MostlyWare
from A,B
  where A.BizNetPoint_Name=B.BizNetPoint_Name

解决方案 »

  1.   

    update A 
    set BizNetPoint_MostlyWare=B.BizNetPoint_MostlyWare 
    from B
     where A.BizNetPoint_Name =B.BizNetPoint_Name
      

  2.   

    update A 
    set A.BizNetPoint_MostlyWare= 
    (select B.BizNetPoint_MostlyWare from B where 
    B.BizNetPoint_Name=A.BizNetPoint_Name 
    )
    from B  where A.BizNetPoint_Name in (select BizNetPoint_Name from b) 
      

  3.   

    在你得sql语句的基础上该的,你的update 没有from
    而且有的字段是A表还是B表不明确