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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:04:05+00:00 2026-05-23T06:04:05+00:00

Can I, and, if I can, how can I set the default value of

  • 0

Can I, and, if I can, how can I set the default value of a field in a MySQL table to the value of another field?

Thing is: I have data, and each data object has its ID in the table. But, I would like the possibility to rearrange the data, changing their sorting index, without altering their ID. Thus, the field sort_num should by default be set to the value given to the auto-incremented indexed field ID.

Thanks in advance!

  • 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-23T06:04:05+00:00Added an answer on May 23, 2026 at 6:04 am

    I see two possible solutions for this:

    1. Possibility:

    You use a function to simply ignore sort_num if it is not set:

    `SELECT * FROM mytable ORDER BY coalesce(sort_num, id)`
    

    coalesce() returns the first non-null value, therefore you would insert values for sort_num if you really need to reorder items.

    2. Possibility:

    You write a trigger, which automatically sets the value if it is not set in the insert statement:

    DELIMITER //
    
    CREATE TRIGGER sort_num_trigger
    BEFORE INSERT ON mytable
    FOR EACH ROW BEGIN
        DECLARE auto_inc INT;
        IF (NEW.sort_num  is null) THEN
             -- determine next auto_increment value
            SELECT AUTO_INCREMENT INTO auto_inc FROM information_schema.TABLES
            WHERE TABLE_SCHEMA=DATABASE() AND TABLE_NAME = 'mytable';
            -- and set the sort value to the same as the PK
            SET NEW.sort_num = auto_inc;
        END IF;
    END
    //
    

    (inspired by this comment)

    However, this might run into parallelization issues (multiple queries inserting at the same time)

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

Sidebar

Related Questions

As title, how can I set a table's column to have the default value
In MySQL I can easily set the default value of a timestamp field to
How can I set a default value such as don't have any information instead
How can you set a default input value in a .net console app? Here
How can i set default home page in asp web.config file. i have already
for String and Object type, I can set the default parameter to null to
How can we set element to some default date in mysql ? In oracle
Is there a way in MySQL table to assign a default when a value
I have a table with a field which contains strings in my MySQL database.
Is there any way that can I set default value as Empty.string in Model.

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.