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

  • SEARCH
  • Home
  • 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 982019
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:37:55+00:00 2026-05-16T04:37:55+00:00

I want to remove duplicate records from a table without using temp table how

  • 0

I want to remove duplicate records from a table without using temp table how is it possible?

  • 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-16T04:37:56+00:00Added an answer on May 16, 2026 at 4:37 am
    1. Make a query A that gets you the rows that qualify as duplicates
    2. Make a query B that gets you the rows that you want to keep
    3. Make a query that deletes all rows that are in A but not in B.

    Example.

    Assuming a table named table, with an autoincrement ID column named id and a column named name of which you want to remove the doubles. Of each name, you want to keep the oldest record (the one with the lowest ID).

    Query A then looks something like:

    SELECT * FROM table 
    WHERE name IN (SELECT name FROM table GROUP BY name HAVING COUNT(*) > 1)
    

    Query B would be:

    SELECT * FROM table 
    WHERE id IN (SELECT min(id) FROM table GROUP BY name)
    

    Now combine these to form the delete query:

    DELETE FROM table 
    WHERE name IN (SELECT name FROM table GROUP BY name HAVING COUNT(*) > 1)
    AND NOT id IN (SELECT min(id) FROM table GROUP BY name)
    

    In the example at hand, you could leave out the first query, but when things get more complicated, it’s a nice extra safeguard.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to remove duplicate lines from a file, without sorting the file. Example
I need to remove semi duplicate records from the following table ID PID SCORE
Possible Duplicate: How to remove duplicate records in a table? I'm having one table
I want to remove duplicate words/strings from a large tab separated file using Linux
I want to remove duplicate rows return from a SELECT Query in Postgres I
I want to remove duplicates from my DataTable so I'm using DataTable.AsEnumerable().Distinct(DataRowComparer.Default) but it
i want to remove the link from my header using CSS so that only
I want to remove duplicate rows from a matrix. I read How can I
all I want to remove the duplicate value from this Array Array ( [0]
Possible Duplicate: Any chance to get unique records using Linq (C#)? using System; using

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.