Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to Match and Unmatch in Same Query? 1

Status
Not open for further replies.

BV874

Technical User
Nov 23, 2009
33
US
Hello,
I have a table that contains EMAIL, CLIENTID, DATE, USERNAME. Some of the EMAIL addresses are the same but with different CLIENTIDs. Most are in the table multiple times with different dates. I need to run a query that tells me what lines of data contain the same EMAIL address when the CLIENTID is different.

Is it possible to run a matched and unmatched query in the same query? I have tried it separately and it does not work with my data.

Thank you.
 
Try
Select EMAIL, CLIENTID, DATE, USERNAME
From Tablename
iner join(
Select Email,count(CLIENTID) as Co
From Tablename)Dups
on Dups.email= TablenameEmail
Group by Email
 
Thank you pwise, but I am not very good with sequel. I could not get this to run.
 


Inner has TWO n's

Also include spaces before and after the ().
Code:
Select Tablename.EMAIL, CLIENTID, DATE, USERNAME
From Tablename
inner join (
Select Email,count(CLIENTID) as Co
From Tablename )Dups
on Dups.email= Tablename.Email
Group by Tablename.Email

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Yes ... but you're not doing anything with the count. It doesn't appear in the Select clause.

If you are Grouping By Tablename.Email then you will need some sort of aggregate function (e.g. First, Last, Min, Max) for the other fields in the Select.

Also, the Sub-Query needs to Group By EMail if you are going to use an aggregate function like Count.
 
Sorry Sb
Code:
Select Tablename.EMAIL, CLIENTID, DATE, USERNAME
From Tablename
inner join (
Select Email,count(CLIENTID) as Co
From Tablename 
Group by Tablename.Email
having count(CLIENTID)>1)Dups
on Dups.email= Tablename.Email
 
Thanks PWISE, GOLOM, and SKIPVOUGHT!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top