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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:18:02+00:00 2026-06-17T05:18:02+00:00

I am using postgresql. I have a table with about 10 million of records.

  • 0

I am using postgresql. I have a table with about 10 million of records. I need to update a column of the table say ‘a’ using a sequence. This column needs to be updated in the order of another column say ‘b’. So, for any two records r1 and r2, if value of ‘a’ for r1 is less than value of ‘a’ for r2 then value of ‘b’ for r1 must be less than value of ‘b’ for r2.

I am using something like this:

UPDATE table 
SET col1 = nextval('myseq') 
WHERE key IN (SELECT key 
              FROM table 
              ORDER BY col2);

key is the primary key of the table.

But it is taking too much time. Can anyone help me in doing it in optimized way.

Thanks

  • 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-17T05:18:04+00:00Added an answer on June 17, 2026 at 5:18 am

    Try something like:

    UPDATE table t
    SET col1 = t2.new_col1 
    FROM (SELECT t2.key, nextval('myseq') as new_col1
          FROM table t2
          ORDER BY t2.col2) t2 
    WHERE t1.key = t2.key;
    

    Or better something like:

    UPDATE table t
    SET col1 = t2.new_col1 
    FROM (SELECT t2.key, 
                 row_number() OVER (ORDER BY t2.col2) as new_col1
          FROM table t2) t2 
    WHERE t1.key = t2.key;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have nested set table (MySQL) with about 1.5 million records in it. The
(I am using PostgreSQL) I have a table which stores transactions to an account.
I have developed an application using postgresql and it works well. Now I need
I'm using PostgreSQL 9.1 and I have this data structure: A B ------- 1
I have a temporary table with about 1 million entries. The temporary table stores
I'm using postgresql to host my database. In my database, I have a table
I'm designing a database schema using PostgreSQL. I have some doubts about which design
I am using a PostgreSQL database and have a table as follows: -------------------------------------- |
Using PostgreSQL triggers, is it possible to record the changes that have happened to
I have a postgresql database and am using it for a project which handles

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.