Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1013109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:02:57+00:00 2026-05-16T10:02:57+00:00

can somebody help me to write a sql select to perform a task. So

  • 0

can somebody help me to write a sql select to perform a task.
So the problem is that we have a table and there are some duplicates, so i need to find where name, street and house are the same and to group somehow them.

I have almost this situation but the difference is that i would like to group them to find what is duplicate of what.

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T10:02:57+00:00Added an answer on May 16, 2026 at 10:02 am

    This is assuming you have an id field, which will be grouped with the GROUP_CONCAT() function for each duplicate row:

    SELECT    t1.name, t1.street, t1.house, GROUP_CONCAT(DISTINCT t1.id) dupes
    FROM      your_table t1
    JOIN      your_table t2 ON (t2.name = t1.name AND 
                                t2.street = t1.street AND 
                                t2.house = t1.house)
    GROUP BY  t1.name, t1.street, t1.house
    HAVING    COUNT(*) > 1;
    

    Test case:

    CREATE TABLE your_table (
       id int, 
       name varchar(10), 
       street varchar(10), 
       house varchar(10)
    );
    
    INSERT INTO your_table VALUES (1, 'a', 'b', 'c');
    INSERT INTO your_table VALUES (2, 'a', '1', 'c');
    INSERT INTO your_table VALUES (3, 'a', '2', '3');
    INSERT INTO your_table VALUES (4, 'a', 'b', 'c');
    INSERT INTO your_table VALUES (5, 'a', 'b', 'c');
    INSERT INTO your_table VALUES (6, 'c', 'd', 'e');
    INSERT INTO your_table VALUES (7, 'c', 'd', 'e');
    

    Result:

    +------+--------+-------+-------+
    | name | street | house | dupes |
    +------+--------+-------+-------+
    | a    | b      | c     | 1,5,4 |
    | c    | d      | e     | 6,7   |
    +------+--------+-------+-------+
    2 rows in set (0.03 sec)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can somebody help me to solve the problem, that my collapsible FieldSet won't remove
Heyy can somebody help me ? i have this issue that still do know
I hope somebody can help me. I've been trying to write a custom html
Can somebody help me with this. There is HTML code: <h3> <label> <input type=checkbox
can somebody please recomend me some python DBAL library that will best suit my
Can somebody please help me to write a DeepCopy routine for this matrix class
Can somebody help me write Android.mk for LibXtract or point me in correct directoin?
Can somebody help me to suggest how can I get the play list from
can somebody help me and tell me why I can't center the JQuery UI
Can somebody help me to set diferent styles to firstchild and lastchild? I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.