I thought this was the correct syntax, but everytime I run it, it crashes the database:
UPDATE table1, table2 SET table1.X = table2.x_coord AND table1.Y=table2.y_coord WHERE table1.address = table2.address
It's dealing with a table with about 1000 entries in one, and 100,000 in the other.
UPDATE table1, table2 SET table1.X = table2.x_coord AND table1.Y=table2.y_coord WHERE table1.address = table2.address
It's dealing with a table with about 1000 entries in one, and 100,000 in the other.