I have two tables like so:
Table1 (ID, Kilometers, Depth)
Table2 (ID, Kilometers, Depth)
Sample Data:
Table 1
1, 0.001, 10
2, 0.002, 11
3, 0.003, 11
Table 2
1, 0.001, 10
2, 0.003, 12
3, 0.004, 15
I need to replace the depth in table 1 with the depth in table 2 according to its Kilometers value.
However, there may not be a kilometers value in table2 for everyone in table 1. So i need to get the closest value (by kilometer) and use its depth in the replace.
I was hoping for a single SQL statement to acheive this. Just a straight replace would be like:
UPDATE T1, T2 SET T1.Depth = T2.Depth WHERE T1.Kilometers = T2.Kilometers
Any way i can adapt this to get the closest value?
This is simple and does what you want: