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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:31:25+00:00 2026-05-27T16:31:25+00:00

I have a mysql statement SELECT * FROM tbl_messages WHERE to_user_id = ‘$user_id’ OR

  • 0

I have a mysql statement

SELECT * 
FROM tbl_messages 
WHERE to_user_id = '$user_id' OR from_user_id = '$user_id' 
GROUP BY from_user_id 
ORDER BY date_sent DESC

and it is producing the correct results however they are not in the correct order.

The grouping works well but it record displayed in the group is the first recorded entered into the DB but I would like the latest record to be displayed in each group.

Is there a way to have the latest record displayed for each group?

2011-12-19 12:16:25 This is the first message
2011-12-19 12:18:20 This is the second message
2011-12-19 12:43:04 This is the third message

The group shows ‘This is the first message’ where I would like ‘This is the third message’ as that is the most recent record/message.

Cheers

  • 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-27T16:31:25+00:00Added an answer on May 27, 2026 at 4:31 pm

    This may work (but not guaranteed):

    SELECT * 
    FROM
      ( SELECT *
        FROM tbl_messages 
        WHERE to_user_id = '$user_id' OR from_user_id = '$user_id' 
        ORDER BY date_sent DESC
      ) tmp
    GROUP BY from_user_id 
    ORDER BY date_sent DESC
    

    This should work:

    SELECT t.* 
    FROM 
        tbl_messages AS t
      JOIN
        ( SELECT from_user_id 
               , MAX(date_sent) AS max_date_sent
          FROM tbl_messages 
          WHERE to_user_id = '$user_id' OR from_user_id = '$user_id' 
          GROUP BY from_user_id 
        ) AS tg
        ON  (tg.from_user_id, tg.max_date_sent) = (t.from_user_id, t.date_sent)
    ORDER BY t.date_sent DESC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a mysql statement: SELECT userid,username FROM table1 ORDER BY userid DESC LIMIT
I have a simple MySQL select statement: SELECT COUNT(*) AS COUNT FROM MY_TABLE WHERE
I'm currently working with this MySQL statement: SELECT * FROM jobs GROUP BY jobType,
Is it possible to have a SELECT statement in mySQL with an IF/ELSE clause
i have this MySQL statement from a search page, the user enters there postcode
I have a problem with a MySQL statement: select sum(x) as sum, 01.06.2010 as
I have the following select statement: $res = mysql_query(select * from Table where Name='{$_REQUEST['name']}');
I have a mySQL statement that looks like below. It tries to select all
Looking to improve this mysql select statement for a search query: Select * from
I have the following SQL statement: mysql_query(SELECT * FROM `friends` WHERE friend1='$username' OR friend2='$username'

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.