JOIN EUSER.EUSERNAME IN eUser TO ALL EATTRIBU.EUSERNAME IN eAttribute AS JOIN0
SET ALL = ON
TABLE FILE EUSER
PRINT
EUSERNAME
EUPDATEDTIME
EDISTINGUISHEDNAME
WHERE EATTRIBUTE.EUSERNAME EQ '.';
I am trying to display unmatched fields after a join, but it comes up with no results for the above code, but when i remove the where condition, I can see both unmatched records along with matched records. I wanna be able to see only unmatched records.
How do I go from here?