I'm trying to get information from 2 tables with a SQL query..
SELECT Num_of_icon, ID_Radar, ID_Observer,
Longitude_Impact_point, Latitude_Impact_point,
Longitude_Impact_point_By_Cutting, Latitude_Impact_point_By_Cutting,
Deviation_In_Meters,
Longitude_Deviation, Latitude_Deviation,
Longitude, Latitude, Azimuth
FROM ShowTable, Observer
ORDER BY Num_of_icon ASC
Num_of_icon is a key in one table.
ID_Observer is a key in the second table and a field in the first table.
The error is:
The field 'ID_Observer' should be show in more than one table.
I dont understand what this error is about.. I know that ID_Observer is showing more than one table, that's why I have a connection between the tables...