Hi guys I need help here again - I have two tables here both contain like lots of records in the tens of thousands. Now we have one main table whose schema is like this:
ID | Location Name | Label | Description | Longitude | Latitude
And we have another table with:
ID | Location Name | Longitude | Latitude
The issue is that the longitude and latitude entries in the first table are mostly wrong :( - the correct info is in the second table. Assuming that the IDs are corresponding to the same locations in both tables how can I fix up a query that updates the longitude and latitude field of every row in the first table based upon the entries in the second table where the IDs are the same... any ideas here - I'm on MySQL database...
EDIT =====
Note: Both tables have 20 000 and 50 000 rows respectively...