I have two tables with the same structure:
Table 1
---------------------------------------
id long lat adresse
---------------------------------------
1 8,767676 50,55599999 aaaaaa
2 3,77777777 40,55599999 xxxxxx
-
-
---------------------------------------
Table 2
---------------------------------------
id long lat adresse
---------------------------------------
1 3,77777777 40,55599999
2
-
-
---------------------------------------
I want to compare Table 1
and Table 2
in php/mysql
and display the adresse
of the data row that doesn't have the same lat
and long
in Table 2
.
From the example, display: aaaaaa
.