SQL Problem

G

Guest

I am having a problem writing a query - I have a number of fields shall we
say Fld1, Fld2, Fld3, Fld4. I need to show all fields where there are
duplicate values in Fld1 with Fld2 having a value of 'A' shall we say.
Can anyone help

TIA

Mark
 
G

Guest

If I understand your question, try:
SELECT Table1.[field 1], Table1.field2, Table1.field3, Table1.field4
FROM Table1
WHERE (((Table1.field2)=[Table1]![field 1]));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top