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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T10:05:55+00:00 2026-06-06T10:05:55+00:00

I have created table and inserted values as below. create table mytable (id INT,

  • 0

I have created table and inserted values as below.

create table mytable (id INT, col1 INT, col2 INT, col3 INT);

insert into mytable values
(1,1,1,NULL),
(2,1,NULL,NULL);

What I want to do is update col2 if col1 is not null, update col3 if col2 is not null and so on… BUT only one column to update.

Consider I want to update data for id=2, then only col2 should be updated and not col2, col3 as both are null.

When I tried with below query, then all columns get updated.

update myTable set  
      col1 = ( IF (col1 is null, 9, col1) ),
      col2 = ( IF (col2 is null, 9, col2) ),
      col3 = ( IF (col3 is null, 9, col3) );

What should be done so that only one column gets updated.

  • 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-06T10:05:57+00:00Added an answer on June 6, 2026 at 10:05 am

    It seems your query is an extension to Update MySql Field (if field is not empty, go to next one)

    You need to set column values checking in the reverse order.

    update table_name set  
    --      more next ( 4 to n ) columns here if required       
        col3 = ( case when ( col2 is not null and col3 is null ) then 7 else col3 end )  
        , col2 = ( case when ( col1 is not null and col2 is null ) then 8 else col2 end )  
        , col1 = ( case when ( col1 is null ) then 9 else col1 end )  
    ;
    

    Example Table:

    mysql> create table col_values ( id INT, col1 INT, col2 INT, col3 INT );
    Query OK, 0 rows affected (0.06 sec)
    
    mysql> insert into col_values values ( 1, 1, 1, NULL ), ( 2, 1, NULL, NULL ), ( 3, NULL, NULL, NULL );
    Query OK, 3 rows affected (0.01 sec)
    Records: 3  Duplicates: 0  Warnings: 0
    
    mysql> select * from col_values;
    +------+------+------+------+
    | id   | col1 | col2 | col3 |
    +------+------+------+------+
    |    1 |    1 |    1 | NULL |
    |    2 |    1 | NULL | NULL |
    |    3 | NULL | NULL | NULL |
    +------+------+------+------+
    3 rows in set (0.00 sec)
    
    mysql> update col_values set
        ->     col3 = ( case when ( col2 is not NULL and col3 is NULL ) then 7 else col3 end )
        ->     , col2 = ( case when ( col1 is not NULL and col2 is NULL ) then 8 else col2 end )
        ->     , col1 = ( case when ( col1 is NULL ) then 9 else col1 end )
        -> ;
    Query OK, 3 rows affected (0.02 sec)
    Rows matched: 3  Changed: 3  Warnings: 0
    
    mysql> select * from col_values;
    +------+------+------+------+
    | id   | col1 | col2 | col3 |
    +------+------+------+------+
    |    1 |    1 |    1 |    7 |
    |    2 |    1 |    8 | NULL |
    |    3 |    9 | NULL | NULL |
    +------+------+------+------+
    3 rows in set (0.00 sec)
    

    You can also use if function as an alternative to case statement.

    mysql> truncate table col_values;
    Query OK, 3 rows affected (0.01 sec)
    
    mysql> insert into col_values values ( 1, 1, 1, NULL ), ( 2, 1, NULL, NULL ), ( 3, NULL, NULL, NULL );
    Query OK, 3 rows affected (0.02 sec)
    Records: 3  Duplicates: 0  Warnings: 0
    
    mysql> select * from col_values;
    +------+------+------+------+
    | id   | col1 | col2 | col3 |
    +------+------+------+------+
    |    1 |    1 |    1 | NULL |
    |    2 |    1 | NULL | NULL |
    |    3 | NULL | NULL | NULL |
    +------+------+------+------+
    3 rows in set (0.00 sec)
    
    mysql> update col_values set
        ->     col3 = if( ( col2 is not NULL and col3 is NULL ), 7, col3 )
        ->     , col2 = if( ( col1 is not NULL and col2 is NULL ), 8, col2 )
        ->     , col1 = if( col1 is NULL, 9, col1 )
        -> ;
    Query OK, 3 rows affected (0.01 sec)
    Rows matched: 3  Changed: 3  Warnings: 0
    
    mysql> select * from col_values;
    +------+------+------+------+
    | id   | col1 | col2 | col3 |
    +------+------+------+------+
    |    1 |    1 |    1 |    7 |
    |    2 |    1 |    8 | NULL |
    |    3 |    9 | NULL | NULL |
    +------+------+------+------+
    3 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 created two tables & inserted values as shown below . Table 1
I have created one table using the below command: create table Table1( Id int
I have Created a table like CREATE TABLE [dbo].[tab1]( [Id] [int] NOT NULL, [Name]
I have created tables in android sqlite using create statement and also inserted values
I have an ai_order table. CREATE TABLE `ai_order`( `id` INT(11) NOT NULL AUTO_INCREMENT, `product_id`
I have created an sqlite table using the following statement: CREATE TABLE IF NOT
I have created sample application that insert 12 rows in tableview.And inserted fine.When after
I have created table using this command successfully create table Person( first_name varchar(25) not
In PHP, I create and execute SQL queries like the following. INSERT INTO Table
I have created the following trigger for insert in the deleted user table the

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.