Hello,
I have two tables with one common field. I want to select only those rows in the first table which values for the common field are different then the values for the common field in the second table.
I have this sql query:
SELECT NOVI.GBR
FROM NOVI
WHERE (((NOVI.GBR)>1080) AND ((Exists (SELECT distinct Avtobusi.Garbr FROM Avtobusi WHERE ( ((Avtobusi.Garbr)>1080)) ))=False));
but I don't get anything as a result.
Can anybody help me please?
Thanks in advance