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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:36:21+00:00 2026-06-17T04:36:21+00:00

This is my MySQL DB structure: Recipents (id, converstation_id, user_id) Conversations (id, user_start) Messages

  • 0

This is my MySQL DB structure:

Recipents (id, converstation_id, user_id)

Conversations (id, user_start)

Messages (id, user_id, message, conversation_id, time)

What I am trying to do is to pull all the conversations ids that were started by a specific user or he is the recipient of one of the conversations. And sort it by the last message.

How can I do that?

  • 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-17T04:36:22+00:00Added an answer on June 17, 2026 at 4:36 am

    The following query will work. You’ll have to replace REQUESTED_USER_ID by a valid user id. Note the UNION statement in SQL that concats the result of the two sub queries. The result from the UNION is then wrapped in another SELECT to achieve the order by start time.

    SELECT
      conversation_id
    FROM (
      SELECT 
        c.id AS conversation_id,
        m.time AS start
      FROM Conversations c
      JOIN Messages m ON m.conversation_id = c.id
      WHERE c.user_start = REQUESTED_USER_ID
      UNION
      SELECT
        c.id AS conversation_id,
        m.time AS start
      FROM Conversations c
      JOIN Recipents r ON c.id = r.user_id
      JOIN Messages m ON m.conversation_id = c.id
      WHERE r.user_id = REQUESTED_USER_ID
    ) result
    
    ORDER BY start DESC;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

All the tables are of the same structure,does MySQL support this kind of operation?
I have an table structure like this mysql> SELECT id, name, parent_id FROM categories;
This is my Database structure, One-to-One mapping in MySQL: This is my java file:
I need to transform my nested sets structure (mysql) into json for this spacetree
Buried in mySQL syntax and query structure problems once more. I'm currently doing this
I'm creating a website with structure like this: class main { } class mysql
My MySQL tables structure is like this. USER int id varchar username FRIEND_LIST int
I've been trying to get this complex MYSQL query to work exactly right over
I have two tables pertaining to this question: conversations has many messages . The
I was trying to think of a logic to implement this mysql query but

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.