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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:51:51+00:00 2026-05-26T00:51:51+00:00

Couldn’t find a solution yet… although it is probably a newbie question, I haven’t

  • 0

Couldn’t find a solution yet… although it is probably a newbie question, I haven’t been able to overcome… hope someone can give a hand.

I have a MySQL table that has:

Blockquote

     Col1  Col2
Row1 A     null
Row2 A     A1
Row3 A     null
Row4 B     null
Row5 B     B1
etc

> Blockquote

How do I construct an SQL update to update Col2, so that the values on Col2 replace the null, ie, C2R1 and C2R3 gets A1, and C2R4 gets B1 ?

  • 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-26T00:51:52+00:00Added an answer on May 26, 2026 at 12:51 am

    You can calculate the required values as follows:

    CREATE TEMPORARY TABLE yourtemptable AS
    SELECT yourtable.col1, T1.col2
    FROM yourtable
    JOIN
    (
        SELECT col1, MAX(col2) AS col2
        FROM yourtable
        GROUP BY col1
    ) T1
    ON yourtable.col1 = T1.col1
    

    You can then either drop/truncate the original table and recreate it using these values, or if you can’t drop the table you can instead perform a multi-table update.

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

Sidebar

Related Questions

couldn't find my solution. hope you can help. I want to have a url
I couldn't find any useful information on Microsoft's site, so here is the question:
I couldn't find a straight answer to my question and need to know it
Couldn't find a better place to ask this so I hope you guys can
I couldn't find a similar question, that's why here it is: Whats the best
I couldn't find best solution when DateTime value is NULL. I use this techinque
Couldn't find an answer to this question. It must be obvious, but still. I
I couldn't find any definitive answer to this question. I suppose most implementation use
I couldn't find a solution for this problem online, as simple as it seems.
Couldn't really find it, but probably it's me not knowing how to search properly

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.