How would I do an "update from" in MS Access SQL Syntax? I tried this and no luck:
Code:update table1 t1 set col1 = t2.col1, col2 = t2.col2, col3 = t3.col3 from table2 t2, table3 t3, table4 t4 where t1.col4 = t2.col4 and t1.col5 = t2.col5 and t1.col6 = t2.col6 and t1.col7 = t4.col7 and t1.col8 = 'X' and t2.col9 = 'ABC';