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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:54:51+00:00 2026-05-12T07:54:51+00:00

I have a table, let’s call it ‘entries’ that looks like this (simplified): id

  • 0

I have a table, let’s call it ‘entries’ that looks like this (simplified):

id [pk]
user_id [fk]
created [date]
processed [boolean, default false]

and I want to create an UPDATE query which will set the processed flag to true on all entries except for the latest 3 for each user (latest in terms of the created column). So, for the following entries:

1,456,2009-06-01,false
2,456,2009-05-01,false
3,456,2009-04-01,false
4,456,2009-03-01,false

Only entry 4 would have it’s processed flag changed to true.

Anyone know how I can do this?

  • 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-12T07:54:51+00:00Added an answer on May 12, 2026 at 7:54 am

    I don’t know postgres, but this is standard SQL and may work for you.

    update entries set
      processed = true
    where (
      select count(*)
      from entries as E
      where E.user_id = entries.user_id
      and E.created > entries.created
    ) >= 3
    

    In other words, update the processed column to true whenever there are three or more entries for the same user_id on later dates. I’m assuming the [created] column is unique for a given user_id. If not, you’ll need an additional criterion to pin down what you mean as “latest”.

    In SQL Server you can do this, which is a little easier to follow and will probably be more efficiently executed:

    with T(id, user_id, created, processed, rk) as (
      select
        id, user_id, created, processed,
        row_number() over (
          partition by user_id
          order by created desc, id
        )
      from entries
    )
      update T set
        processed = true
      where rk > 3;
    

    Updating a CTE is a non-standard feature, and not all database systems support row_number.

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

Sidebar

Related Questions

Let's say I have a table that looks something like this: ------------------------------- id|column2|column3 |column4
Let's say I have a table like this: name | score_a | score_b -----+---------+--------
Let's say that I want to have a table that logs the date and
In MS Transact SQL, let's say I have a table (Orders) like this: Order
Let's say I have a table Employee like this EmpID, EmpName 1 , hatem
Let's say I have a table like this (ordered by id ): id amount
Let's say I have a table that represents a super class, students . And
Let's say I have a payments table like so: CREATE TABLE Payments ( PaymentID
Let's suppose I have the following table (let's call it my_table ): CREATE TABLE
let say i have table look like below actionTable ----------- id, user, actionName, time

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.