两个表test1,test2 
test1: 
编号 名称 厂家 
1 a 
2 b 
3 c 
4 d 
5 e 
6 f 
test2: 
编号 厂家 
2 广东 
5 厦门 
6 深圳 
我想把test2的编号和test1编号相同的厂家名称 加到test1得厂家中: 
update test1 set test1.厂家=test2.厂家 from test2,test1 
where test1.编号=test2.编号 
在access里面运行弹出窗口,“语法错误(操作符丢失)在查询表达式‘test2.厂家 from test1’中”高手帮看一下