trying to filter data,,,help please

maxxximaniac

Registered User.
Local time
Today, 13:50
Joined
Oct 22, 2004
Messages
80
I have two fields in a table.
i.e.
ROW A ROW B

I need to filter out all the data where row a = row b

anyone know how to do this... im sure its easy i just cant think of it
any help is appreciated..
thanks!
 
Hth

SELECT
tblTesting.RowA
, tblTesting.RowB

FROM
tblTesting

WHERE
(((tblTesting.RowA)=[RowB]));
 
im not quite following you...
insert this code into?
 
SELECT *
FROM tblTesting
WHERE RowA <> RowB;

??
 
maxxximaniac said:
im not quite following you...
insert this code into?


While in design view of your query Select VIEW > SQLView
Then type it in...
 
what is tblTesting

here's the exact scanario

Table name: mbna
Rows are TRNDTE and TRNEFD
 
ah i got it
intead of = i put <>

thank you VERY much for your help! :)
 

Users who are viewing this thread

Back
Top Bottom