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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:13:55+00:00 2026-05-16T21:13:55+00:00

I have table with the column name displayorders with values 1 to 250 and

  • 0

I have table with the column name displayorders with values 1 to 250 and it’s not autoincrement.

Now I want to add a new row in table with displayorder = 3. So I don’t want to manually update all the values form 3 to 250.Instead of that I want to update all the displayorders to +1 and I can manually change from 1 to 2(ie 2 to 3 after updation).How can I do it through SQL Query?

  • 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-16T21:13:55+00:00Added an answer on May 16, 2026 at 9:13 pm

    If I understood correctly, you’d want to run an UPDATE statement like this:

    UPDATE your_table SET displayorder = displayorder + 1 WHERE displayorder > 2;
    

    Test case:

    CREATE TABLE your_table (displayorder int);
    
    INSERT INTO your_table VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9);
    

    Result after the UPDATE statement:

    SELECT * FROM your_table;
    +--------------+
    | displayorder |
    +--------------+
    |            1 |
    |            2 |
    |            4 |
    |            5 |
    |            6 |
    |            7 |
    |            8 |
    |            9 |
    |           10 |
    +--------------+
    9 rows in set (0.00 sec)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an a new table with the column below: id , name ,
I have a table with the column name: variant_markup datatype: numeric(4,3) I try to
I have a table name KHA_ID with a column name of KHA_ID. I went
I have a table with column for storing product code. | product_id | Product-name
I have a DataGrid table with columns name , phone . In column name
Suppose I have a table with a column name varchar(20) , and I store
I have trouble saving my date field into database using CakePHP. Table column name
I have a 3 column table (name, author, and date). When the page loads,
I have a variable say, column_name. I want to update a column whose name
I have a table with Column name Height, the table has millions of records

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.