I have the following SQL Query:
VB Code:
SELECT * FROM ALLTAGS INNER JOIN Trend_Definitions ON ALLTAGS.Real_Tag_NAME = Trend_Definitions.REAL_TAG_NAME
This passes back all the records in ALLTAGS that exsist in Trend_Definitions.
How can i change this to return all the recordes from ALLTAGS that DO NOT exist in Trend Definitions?
