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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:54:24+00:00 2026-06-12T20:54:24+00:00

I have this table : | Column | Type | +—————+——————————–+ | id |

  • 0

I have this table :

| Column        | Type                           |
+---------------+--------------------------------+         
| id            | integer                        |
| recipient_id  | integer                        | 
| is_read       | boolean                        | 
| updated_at    | timestamp(0) without time zone | 

I have to delete items from this table with this specific rule:

  • for each recipient_id, we keep the 5 last read items, and we delete the old read one.

I tried to bend my mind with RECURSIVE WITH statements but failed miserably. I’ve implemented my solution programmatically but I wanted to know if there was a decent pure SQL solution.

  • 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-06-12T20:54:26+00:00Added an answer on June 12, 2026 at 8:54 pm
    DELETE FROM tbl t
    USING (
        SELECT id, row_number() OVER (PARTITION BY recipient_id
                                      ORDER BY updated_at DESC) as rn
        FROM   tbl
        WHERE  is_read
      ) x
    WHERE  x.rn > 5
    AND    x.id = t.id;
    

    A JOIN is usually faster than an IN expression, especially with larger numbers of items.
    And use row_number(), not rank()!

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

Sidebar

Related Questions

I have 2 tables that look like this: Table public.phone_lists Column | Type |
In a table column, I have this value: DV-2011-01-000004 (the data type is varchar2)
I have this recommendations table: Table public.recommendations Column | Type | Modifiers -----------------------+-----------------------------+-------------------------------------------------------------- id
I have data stored in a mySQL table under the column type timestamp that
I have a MYSQL table column of type timestamp and using CURRENT_TIMESTAMP as default
Imagine I have this table: Column A | Column B | Column C ------------------------------
I have this table: ID(INT) DATE(DATETIME) Under the DATE column there are a lot
I have table and this table contain result column with some entries. I just
I have a schema design that looks like this: Table: User Row Column Family
If I have a table column with data and create an index on this

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.