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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:07:24+00:00 2026-05-11T21:07:24+00:00

I have a problem coming up with a query in MySQL. I have the

  • 0

I have a problem coming up with a query in MySQL. I have the following query:

SELECT
  tm.ticket_message_id, 
  tm.ticket_id, 
  tm.message_from, 
  tm.message_to, 
  t.member_id, 
  t.member_to 
FROM 
  `ticket_messages` AS tm 
  INNER JOIN `tickets` AS t 
  ON ( t.ticket_id = tm.ticket_id )

The primary key of table ticket_messages is ticket_message_id. For tickets, the primary key is ticket_id.

Right now, due to a mistake in a program’s logic, the value in ticket_messages.message_from is always 0. This is wrong.

Now I must fix this situation and set tm.message_to to tm.message_to or t.member_id, depending on the following condition:

Suppose ID_1 and ID_2 are two IDs. If tm.message_from and t.member_to are both equal to ID_1, and t.member_id is equal to ID_2, then the value for tm.message_from needs to be assigned the value in t.member_id.

If tm.message_from and t.member_id are equal to ID_2, and t.member_to is equal to ID_1, then the value for tm.message_from needs to be assigned the value in t.member_to.

How I could fix my table with a MySQL query?

  • 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-11T21:07:25+00:00Added an answer on May 11, 2026 at 9:07 pm

    Use the awesome “CASE” statement.

    UPDATE `ticket_messages` AS tm, `tickets` AS t
    SET tm.message_from = CASE
      WHEN tm.message_from == t.member_id THEN t.member_id
      ELSE t.member_to
    END
    WHERE ( t.ticket_id = tm.ticket_id )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following query to start with: var query = from p in
I have a function that will parse some data coming in. My problem is
So, one problem pattern that I keep coming across and don't have a good
I have problem with my query on C, I’m using the oci8 driver. This
I have problem with UIWebView delay when the load image from url. In my
I have problem while loading data into html select when users press or click
I am trying to show the data coming from mysql database as a table
I had a function that reads displays the contents of the SELECT query coming
I have a problem in architecting my application. I have the following structure with
Dear Expert i have the following problem when i try to get the value

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.