A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Running & Setting Up Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Find Duplicate Records in two tables



 
 
Thread Tools Display Modes
  #1  
Old March 29th, 2010, 09:45 PM posted to microsoft.public.access.queries
John
external usenet poster
 
Posts: 2,649
Default Find Duplicate Records in two tables

First of all by accident I also posted this in the General Questions section
of the discussion board. So if it shows in both places my aplogies, I think
it is a better post here.
I need to find employees names that show up in two tables (duplicates). I
have a table called Did Not Receive Gift Card and a table called Tax List
(the table names are saved with the spaces exactly as shown). I need to find
employees whose name is on the Did Not Receive Gift Card table AS WELL AS on
the tax list table. Both tables use the field of name. This field is the
employees full name. I did not set up the table this way, I inherited it so I
cannot change it now. In essence what I am looking for are those employees
who did not receive a gift card (Name on Did Not Receive Gift Card table) but
were taxed for a card in their pay (name also on Tax List table). An office
mate suggested a Join Query, but not sure how to write such.

  #2  
Old March 30th, 2010, 04:29 AM posted to microsoft.public.access.queries
Kc-Mass
external usenet poster
 
Posts: 362
Default Find Duplicate Records in two tables

This will show you who did not get a gift card but Paid Tax. Fix the table
names to suit.

SELECT tblNoGiftCard.Name, tblTaxPaid.Name
FROM tblTaxPaid INNER JOIN tblNoGiftCard ON tblTaxPaid.Name =
tblNoGiftCard.Name;

Regards

Kevin


"John" wrote in message
...
First of all by accident I also posted this in the General Questions
section
of the discussion board. So if it shows in both places my aplogies, I
think
it is a better post here.
I need to find employees names that show up in two tables (duplicates). I
have a table called Did Not Receive Gift Card and a table called Tax List
(the table names are saved with the spaces exactly as shown). I need to
find
employees whose name is on the Did Not Receive Gift Card table AS WELL AS
on
the tax list table. Both tables use the field of name. This field is the
employees full name. I did not set up the table this way, I inherited it
so I
cannot change it now. In essence what I am looking for are those employees
who did not receive a gift card (Name on Did Not Receive Gift Card table)
but
were taxed for a card in their pay (name also on Tax List table). An
office
mate suggested a Join Query, but not sure how to write such.



  #3  
Old March 30th, 2010, 01:13 PM posted to microsoft.public.access.queries
Rob
external usenet poster
 
Posts: 1,029
Default Find Duplicate Records in two tables

I was wondering where that Query string woud be placed? I'd like to use it
for my own needs, with adjustments of course.

Thanks.



"kc-mass" wrote:

This will show you who did not get a gift card but Paid Tax. Fix the table
names to suit.

SELECT tblNoGiftCard.Name, tblTaxPaid.Name
FROM tblTaxPaid INNER JOIN tblNoGiftCard ON tblTaxPaid.Name =
tblNoGiftCard.Name;

Regards

Kevin


"John" wrote in message
...
First of all by accident I also posted this in the General Questions
section
of the discussion board. So if it shows in both places my aplogies, I
think
it is a better post here.
I need to find employees names that show up in two tables (duplicates). I
have a table called Did Not Receive Gift Card and a table called Tax List
(the table names are saved with the spaces exactly as shown). I need to
find
employees whose name is on the Did Not Receive Gift Card table AS WELL AS
on
the tax list table. Both tables use the field of name. This field is the
employees full name. I did not set up the table this way, I inherited it
so I
cannot change it now. In essence what I am looking for are those employees
who did not receive a gift card (Name on Did Not Receive Gift Card table)
but
were taxed for a card in their pay (name also on Tax List table). An
office
mate suggested a Join Query, but not sure how to write such.



.

  #4  
Old March 30th, 2010, 05:02 PM posted to microsoft.public.access.queries
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Find Duplicate Records in two tables

On Tue, 30 Mar 2010 05:13:01 -0700, Rob wrote:

I was wondering where that Query string woud be placed? I'd like to use it
for my own needs, with adjustments of course.


All Queries consist of SQL strings. The query grid is just a tool to help
build those strings.

You can create a new Query in query design view, and choose SQL as the view
from the dropdown; or in 2003 and before, choose View... SQL on the menu. You
can then copy and paste a SQL string from a message here into the SQL window.
Edit the fieldnames and tablenames to match your database.
--

John W. Vinson [MVP]
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:13 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.