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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T05:24:37+00:00 2026-05-12T05:24:37+00:00

I have a table, tableA that I want to resort and then insert /

  • 0

I have a table, tableA that I want to resort and then insert / update each resulting row into tableB. Currently I have something like this:

delete from tableB;
set @place = 0;
INSERT INTO tableB (id, place, name, colD, colF) SELECT (id, greatest(@place := @place + 1, 0) from tableA order by colD desc;

This works, but I don’t want to delete from tableB each time as the table will likely contain hundred of thousands of rows. So, I wanted to use ON DUPLICATE KEY UPDATE as each id column is set as a PRIMARY KEY. I have tried various versions of the following (moving the ON DUPLICATE KEY UPDATE clause around)

INSERT INTO tableB (id, place, name, colD, colF) SELECT (id, greatest(@place := @place + 1, 0) from tableA order by colD desc ON DUPLICATE KEY UPDATE tableB.place = @place, tableB.name = tableA.name, tableB.colD = tableA.colD, tableB.colF = tableA.colF;

NO LUCK,

Any pointers on how to 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-12T05:24:38+00:00Added an answer on May 12, 2026 at 5:24 am

    Why don’t you use views for this purpose?

    create view tableb as 
    SELECT (id, greatest(@place := @place + 1, 0) from tableA order by colD desc;
    

    That way will have less problems because it will be automatically updated.

    MySQL documentation

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

Sidebar

Related Questions

I have a table that i want to highlight during onmouseover/onmouseout. I already know
I use SQL Server 2008 R2 and have a table that I want no
i have a table that has event name and event date. if i want
I have 2 tables with some columns and another table that I want its
I have a table, named ReportingPeriods , that I want to be populated entirely
I have a database table with some rows that I want to fetch using
I have a table in SQL that links to itself through parentID. I want
I have the data table from the jquery plugin dataTables (http://datatables.net/) that I want
I have a big problem. I want to extract text from html table that
I have a table with a primary key that is auto increment. I want

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.