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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:44:40+00:00 2026-06-13T20:44:40+00:00

I’m working in MySQL and PHP. How in MySQL do you do an update

  • 0

I’m working in MySQL and PHP. How in MySQL do you do an update to an existing table with additional records, without causing duplicates? The records are customers and the key to each record is the customer account number such as “1234”.

I need to do basically three things. Add a new customer record if their customer account doesn’t exist, update an existing customer’s information such as their phone number or e-mail address has changed, or delete the customer record if they are no longer a customer.

The data comes in as a feed daily, and marketing wants to have their own data base of customers with their own fields added, which is why I don’t simply re-create the database from the daily feed. The goal is to keep it up to date with the feed. Thanks!

  • 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-13T20:44:42+00:00Added an answer on June 13, 2026 at 8:44 pm

    I would suggest that you do all of the processing using PHP.

    When you’re looping through your customer records, first check if the record exists:

    $query = "SELECT customer_account_number FROM table WHERE customer_account_number = 1234";
    $result= $mysql -> query($query);
    $num   = $result -> num_rows;
    
    if($num == 1){
       // The record already exists so you update.
       $update_query = "UPDATE table SET some_field = 'Some Value' WHERE customer_account_number = 1234";
       $update_result= $mysqli -> query($update_query);
    }else{
       // The record doesn't exist so create a record.
       $insert_query = "INSERT INTO table (customer_account_number) VALUES (1234)";
       $insert_result= $mysqli -> query($insert_query);
    }
    

    Alternatively, you could do one select query to get the customer account numbers and pop them in an Array.

    $query = "SELECT customer_account_number FROM table";
    $result= $mysql -> query($query);
    $num   = $result -> num_rows;
    
    while($row = $result -> fetch_array(MYSQLI_ASSOC)){
    
       $cust_records[] = $row['customer_account_number'];
    
    }
    
    // Then for each customer record your looping through.
    
    if(in_array($customer_record_id, $cust_records)){
        // It exists - so just update
        $update_query = "UPDATE table SET some_field = 'Some Value' WHERE customer_account_number = 1234";
        $update_result= $mysqli -> query($update_query);
    }else{
        // Doesn't exist - insert
        $insert_query = "INSERT INTO table (customer_account_number) VALUES (1234)";
        $insert_result= $mysqli -> query($insert_query);
    }
    

    Also, as suggested by Tadman, if you make sure the customer account number is a UNIQUE column then that will add extra protection to make sure duplicates can’t be added.

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

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
this is what i have right now Drawing an RSS feed into the php,
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I would like to count the length of a string with PHP. The string
I've tracked down a weird MySQL problem to the two different ways I was
I'm trying to create an if statement in PHP that prevents a single post
I'm working with an upstream system that sometimes sends me text destined for HTML/XML

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.