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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T13:14:15+00:00 2026-06-14T13:14:15+00:00

Is there a way to update a column only when it is null and

  • 0

Is there a way to update a column only when it is null and leave it as it is when it is not null in one multiple-columns-update query?
something like below. (like how we use case in select statements)

UPDATE users  SET users.city = 'Dallas',
      CASE
          WHEN users.Global_id IS NULL
          THEN
              users.Global_id = '123'
      END WHERE userid = '12312312'

The above update statement throws ORA-00927: missing equal sign error.

Reason why I am looking for this?
I have a schedule job that runs a similar query like above.
And there also exists a trigger in users table that will raise error if you try to update a ‘not null’ global_id. So my job fails when it encounters this trigger.

I have one option… to split this update query to two.. one to update city and one to update global_id where global_id is null.

But wondering if this can be achieved by any other way… Any idea would be appreciated.

  • 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-14T13:14:16+00:00Added an answer on June 14, 2026 at 1:14 pm

    You can use coalesce function:

    UPDATE users  
    SET 
       users.city = 'Dallas',
       users.Global_id = coalesce( users.Global_id, '123')
    

    Also, you can split your update in two sentences, remember than you can enclose it in a single transaction:

    UPDATE users  
    SET 
       users.city = 'Dallas';
    
    UPDATE users  
    SET 
       users.Global_id = '123'
    WHERE
        users.Global_id is null
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to add a not null type column to a Postgresql
Is there a way to update only the parent UpdatePanel without updating the child
Is there a way to update only Hour part in a DateTime field?? If
Is there an easy way to update the data source for multiple pivot tables
Is there any way to update nested documents by id or some other field?
Is there any way to update my beta testing application on windows phone marketplace?
is there a way to update a binding before or when a command is
I there a way to update a row without mentioning fields name ? I
Is there any way to update a table layout after it has been created?
Is there is any way to update shared OR(Object Repository) in QTP without having

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.