Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table which has several thousand records. I want to update all the records which have a duplicate firstname How can I achieve this with a single query? Sample table structure:

Fname varchar(100)
Lname varchar(100)
Duplicates int

This duplicate column must be updated with the total number of duplicates with a single query. Is this possible without running in a loop?

share|improve this question
2  
Can you show some sample data <--> desired output? – eggyal May 1 '12 at 14:54

4 Answers

update table as t1
inner join ( 
select
fname,
count(fname) as total
from table
group by fname) as t2
on t1.fname = t2.fname
set t1.duplicates = t2.total
share|improve this answer
My query works perfectly. – nick rulez May 1 '12 at 15:03
Apologies! It just appeared to violate that constraint. Weird. – eggyal May 1 '12 at 15:05
I tried the above query, but I was unable to view the results. I have close to 200,000 records, after a while it was hanging so I had to kill the process. Is there way to limit the records? I just want to test the above query for say 1000 records. – Krishna Iyer May 1 '12 at 20:56
Add a limit clause after group by clause and retry. You can even try do add an index on fname field in order to speed up your query. – nick rulez May 1 '12 at 21:12
I added a limit clause but even then just to process 1000 records its taking several minutes and its not completing I had to kill the process. Any ways to quicken the process? – Krishna Iyer May 2 '12 at 13:20
show 1 more comment

I have a table which has several thousand records. I want to update all the records which have a duplicate firstname How can I achieve this with a single query?

Are you absolutely sure you want to store the number of the so called duplicates? If not, it's a rather simple query:

SELECT fname, COUNT(1) AS number FROM yourtable GROUP BY fname;

I don't see why you would want to store that number though. What if there's another record inserted? What if there are records deleted? The "number of duplicates" will remain the same, and therefore will become incorrect at the first mutation.

share|improve this answer
True, but I want to view the list of duplicates and then delete the ones I don't need. So if I process all the duplicates, it makes it easier. I might be running this "check for duplicates" process once in two weeks. – Krishna Iyer May 1 '12 at 19:41
Also your query doesn't list by duplicates, it simply lists all records. – Krishna Iyer May 1 '12 at 20:54
@KrishnaIyer - Try adding a having clause ie HAVING COUNT(1) > 1 But if the ultimate goal is deleting duplicates, you need additional logic because that would not tell you which record to "keep". – Leigh May 2 '12 at 0:16
1  
@KrishnaIyer How about, instead of executing a query to remove duplicates once in a while, you opt for a UNIQUE constraint in your database instead? My query indeed doesn't list duplicates, but like @Leigh mentioned, that's easily solved by a HAVING COUNT(1) > 1. – Berry Langerak May 2 '12 at 7:01
Good point. "An ounce of prevention is worth a pound of cure" :) – Leigh May 2 '12 at 9:55
show 1 more comment

Create the column first, then write a query like:

UPDATE table SET table.duplicates = (SELECT COUNT(*) FROM table r GROUP BY Fname/Lname/some_id)

Maybe this other SO will help?

SQL Server UPDATE from SELECT

share|improve this answer
In MSSQL, and using aliases, you can. – dweiss May 1 '12 at 15:12
1  
Lovely. :) But the question is tagged mysql. – eggyal May 1 '12 at 15:15
Didn't you just agree that nick rulez's answer was correct? And doesn't he have a select in a subquery that hits the same table as his update? And doesn't it use a similar method to what I linked to? And thusly couldn't you put this all together to say that in MySQL you can update a table and select from the same table in a subquery using an inner join as explained by nick? – dweiss May 1 '12 at 15:19
show 1 more comment

You might not be able to do this. You can't update the same table that you are selecting from in the same query.

share|improve this answer
Yes you can. Use the multiple-table update syntax with a self-join (like I just did in this answer). – eggyal May 1 '12 at 14:58
From dev.mysql.com/doc/refman/5.5/en/update.html "Currently, you cannot update a table and select from the same table in a subquery." – ethrbunny May 1 '12 at 15:00
1  
@ethrbunny Not if you don't use the self-join hack. If you use that, it is possible. – Berry Langerak May 1 '12 at 15:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.