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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:18:24+00:00 2026-05-23T07:18:24+00:00

I have the following tables: users: user_id user_name message: message_id thread_id to_id from_id title

  • 0

I have the following tables:

users:
    user_id
    user_name

message:
    message_id
    thread_id
    to_id
    from_id
    title
    message_text
    message_date        
    status

The desired result of the query I run is to list the title of the most recent message from the most recent threads a long with the thread_id and username and to sort the result by date in descending order. I’m only going to be listing about 10 to 20 results at a time most likely.

The SQL query I came up with seems to be doing this so far, but I feel like I have over complicated it and that there may be a more optimal way to write my query.

    SELECT personal_messages.message_id, 
           personal_messages.thread_id, 
           personal_messages.body, 
           users.username
    FROM users, personal_messages
    WHERE message_id IN 
        (SELECT MAX(message_id) from personal_messages GROUP BY thread_id)
    AND users.id IN 
        (SELECT users.id FROM users WHERE users.id = personal_messages.from_id)
    ORDER BY personal_messages.message_date DESC

Also, if anyone knows a way to get the count of all the messages with the same thread_id, that would be awesome!

Any tips would be greatly appreciated!

  • 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-23T07:18:24+00:00Added an answer on May 23, 2026 at 7:18 am

    One of the subselects could be unnecessary

    SELECT personal_messages.message_id, personal_messages.thread_id, personal_messages.body, users.username
    FROM users INNER JOIN personal_messages ON (users.id = personal_messages.from_id)
    WHERE message_id IN (SELECT MAX(message_id) from personal_messages GROUP BY thread_id)
    ORDER BY personal_messages.message_date DESC    
    

    Edit: Also, if anyone knows a way to get the count of all the messages with the same thread_id, that would be awesome!

    SELECT MAX(message_id), COUNT(message_id) FROM personal_messages GROUP BY thread_id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2 following tables: Users (user_id, user_name, ... ) Photo (photo_id, user_id, ...)
I have the following tables: users { id, name } events { id, name
I have the following tables in MySQL: users profile rates In the users table,
My Schema I have the following tables table notes/example values ------------------------------------------------ users ( id
Say I have the following 3 tables: users id : int 11 primary autoinc
I have the following rails migration: create_table :articles do |t| t.integer :user_id, :allow_null =>
I have the following tables in my database that have a many-to-many relationship, which
I have the following tables in MySQL: team: id, name, [more stuff] person: id,
I have the following five tables: ISP Product Connection AddOn AddOn/Product (pivot table for
I have following situation. A main table and many other tables linked together with

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.