compare tables and get common data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey everyone, i know it is a silly question but i am missing the most
critical part about it...

i have two tables "newest" and "removed". they both have two fields: Code
and Name. i want to compare the data in the Name field and get the common
records of the tables... tried the draging way but it showed me nothing...
while there are some coomon records i am sure...

thanks for your help in advance ...
 
You need to create a select query with a Inner join between the two tables,
that way only the commomn records will display

Something like:

Select newest.* From newest Inner Join removed On newest.Code = removed.Code

Or, create a query, add both tables and then create a connection between the
two tables with the code field, drag and drop from one table to the other
 

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

Back
Top