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 7186855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:43:14+00:00 2026-05-28T18:43:14+00:00

I have a model where because of a code bug, there are duplicate rows.

  • 0

I have a model where because of a code bug, there are duplicate rows. I now need to delete any duplicates from the database.

Every row should have a unique photo_id. Is there a simple way to remove them? Or do I need to do something like this:

rows = MyModel.objects.all()
for row in rows:
    try:
        MyModel.objects.get(photo_id=row.photo_id)
    except:
        row.delete()
  • 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-28T18:43:15+00:00Added an answer on May 28, 2026 at 6:43 pm

    The simplest way is the simplest way! Especially for one off scripts where performance doesn’t even matter (unless it does). Since it’s not core code, I’d just write the first thing that comes to mind and works.

    # assuming which duplicate is removed doesn't matter...
    for row in MyModel.objects.all().reverse():
        if MyModel.objects.filter(photo_id=row.photo_id).count() > 1:
            row.delete()
    

    Use .reverse() to delete the duplicates first and keep the first instance of it, rather than the last.

    As always, back up before you do this stuff.

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

Sidebar

Related Questions

If I have Model.objects.all() I want to get only one object for any content_object=foo,
just to know if someone have any idea why this bug is happening. I
I have to model this relationship in NHibernate (simplified the code a bit to
I have some problem with MvcSiteMap. I get NullreferenceException when interating over Model.Nodes because
I have model Foo which has field bar. The bar field should be unique,
I have model Article it has field title with some text that may contain
Lets say I have model inheritance set up in the way defined below. class
In my controller I have model operations that can return empty results. I've setup
I am newbie at Django. I have model with a custom method. In view
I have a model being populated by my data layer and then I have

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.