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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T19:04:57+00:00 2026-06-12T19:04:57+00:00

Just curious to know- if we need to do a conditional Update in a

  • 0

Just curious to know- if we need to do a conditional Update in a large table, then which is the best approach-

Directly doing an Update or check for existing entry before Update.

function doDirectUpdate()
{
   // UPDATE table WHERE condn
}

OR

function doCheckAndUpdate()
{
   // SELECT COUNT(id) AS exist FROM table WHERE condn
   if(id exists)
   {
      // UPDATE table WHERE condn
   }
   else
   {
      echo 'No matching entry';
   }
}
  • 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-12T19:04:59+00:00Added an answer on June 12, 2026 at 7:04 pm

    One should not perform both a SELECT, then a conditional UPDATE, simply to display the number of matching rows — or lack of matching rows. The only time that you should perform the SELECT is if you have other logic that states to not update if there are more than X matching rows.

    UPDATE returns the number of rows that were updated, and therefor matched. You should take the return value, from UPDATE, then alert if there are no matching entries.

    function doUpdateAndAlertIfNotMatched()
    {
       numberOfRowsUpdated = UPDATE table WHERE condn;
       if(numberOfRowsUpdated == 0)
       {
          echo 'No matching entry';
       }
    }
    

    reference: http://dev.mysql.com/doc/refman/5.0/en/update.html#id844302

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

Sidebar

Related Questions

I am just curious to know why do we need to append m or
I'm just curious to know about this.When i heard about Spring.net and tried some
I'm just curious to know if anyone has used (successfully) Fusion Charts with Open
This is really just sort of an academic question, I'm just curious to know
just curious if you know of any way to setup a drag boundary for
I'm just curious. Maybe for a future project. I want to know if it's
This should be easy, just curious. I know httpd is the HTTP daemon, just
... after having just read http://www.cocoadev.com/index.pl?CocoaInsecurity ... I am curious to know about your
I need to know the best way to manage team web-development on a shared
I'm just curious if you can bypass the login into a asp.net website, which

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.