我有些糊涂,难道不是这个:
update b set content=a.content from b where b.id=a.id

解决方案 »

  1.   

    这个?
    update b set content=a.content from a where b.id=a.id
      

  2.   

    楼主的需求好象就是这样就可以实现的:!
    update b set content=a.content from a where b.id=a.id还总感觉楼主还有需求没描述完一样 ??????
      

  3.   

    update b set b.content=a.content from b where b.id=a.id