G
Guest
I need to return results where 2 fields do not equal each other.
Ofer said:Try this
SELECT TableName.*
FROM TableName
WHERE Field1<>[Field2]
--
\\// Live Long and Prosper \\//
C3JEM said:I need to return results where 2 fields do not equal each other.
C3JEM said:Hi Ofer
The fields are indifferent tables which is causing me a problem. Where can
I add this text, is it within design view, query, data definition?
The example I am using is that i have items with qty's that I want to
compare from different tables.
Thanks
Ofer said:Try this
SELECT TableName.*
FROM TableName
WHERE Field1<>[Field2]
--
\\// Live Long and Prosper \\//
C3JEM said:I need to return results where 2 fields do not equal each other.
Ofer said:How do you join this tables?
Is there a field that you can search on, in all the tables?
C3JEM said:Hi Ofer
The fields are indifferent tables which is causing me a problem. Where can
I add this text, is it within design view, query, data definition?
The example I am using is that i have items with qty's that I want to
compare from different tables.
Thanks
Ofer said:Try this
SELECT TableName.*
FROM TableName
WHERE Field1<>[Field2]
--
\\// Live Long and Prosper \\//
:
I need to return results where 2 fields do not equal each other.