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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:35:54+00:00 2026-05-27T22:35:54+00:00

This one is probably a softball question for any DBA, but here’s my challenge.

  • 0

This one is probably a softball question for any DBA, but here’s my challenge. I have a table that looks like this:

id     parent_id    active
---    ---------    -------
1      5            y
2      6            y
3      6            y
4      6            y
5      7            y
6      8            y

The way the system I am working on operates, it should only have one active row per parent. Thus, it’d be ok if ID #2 and #3 were active = ‘n’.

I need to run a query that finds all rows that have duplicate parent_ids who are active and flip all but the highest ID to active = ‘y’.

Can this be done in a single query, or do I have to write a script for it? (Using Postgresql, btw)

  • 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-27T22:35:54+00:00Added an answer on May 27, 2026 at 10:35 pm

    ANSI style:

    update table set
        active = 'n'
    where
        id <> (select max(id) from table t1 where t1.parent_id = table.parent_id)
    

    Postgres specific:

    update t1 set
        active = 'n'
    from
        table t1
        inner join (select max(id) as topId, parent_id from table group by parent_id) t2 on
            t1.id < t2.topId
            and t1.parent_id = t2.parent_id
    

    The second one is probably a bit faster, since it’s not doing a correlated subquery for each row. Enjoy!

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

Sidebar

Related Questions

I have often pondered this one... its probably an idiot question but here goes.
This is probably a basic html/css question... I have a simple one-button form that
This is probably a simple one to answer, but I'm stuck, so here goes.
Morning y'all This is probably an easy one but I barely got any sleep
Probably a bit silly of a problem, but I have this one variable (a
Ugh, how do I explain this one... Probably a simple question but my mind
This is one of those I probably should know this, but I don't questions.
Hey, so this is one of those questions that seems obvious, and I'm probably
This is probably a simple one but I can't seem to figure it out.
This one is probably a simple one, but I could not find an example

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.