update的一个语句有表A,有字段1,2 表B,有字段3,4 现想找到表A中满足a.1=b.3的记录,并将b.4赋值给a.2,请问如何写[解决办法]update [a] set [a].[2]=[b].[4] from [a],[b] where [a].[1] = [b].[3]