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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:28:16+00:00 2026-05-19T22:28:16+00:00

I have a table as below, I’m having trouble getting the results I want.

  • 0

I have a table as below, I’m having trouble getting the results I want.

What I want is to get just the recent message of every unique user_id. I have asked a similar question before, but I feel like an idiot because I still does not get it. How am I suppose to use MySQL order by and group by together? Using distinct doesn’t work either.

+---------+---------------------+------------------+
| user_id | created_at          | message          |
+---------+---------------------+------------------+
|       2 | 2011-02-06 19:53:59 | sd               |
|       2 | 2011-02-06 20:11:41 | working on st..  |
|       3 | 2011-02-06 20:40:14 | testing applica..|
|       3 | 2011-02-06 21:35:11 | testing appli..  |
|       3 | 2011-02-06 23:09:34 | testing af..     |
+---------+---------------------+------------------+

This is how it should return

+---------+---------------------+------------------+
| user_id | created_at          | message          |
+---------+---------------------+------------------+
|       2 | 2011-02-06 20:11:41 | working on st..  |
|       3 | 2011-02-06 23:09:34 | testing af..     |
+---------+---------------------+------------------+

This does return in right format, but it fetches some random message.

select user_id,created_at, message from status group by user_id order by created_at desc

Thank you.

  • 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-19T22:28:17+00:00Added an answer on May 19, 2026 at 10:28 pm
    SELECT
      user_id,
      created_at,
      message
    FROM
      status
        JOIN
          (SELECT user_id,MAX(created_at) AS max 
           FROM status 
           GROUP BY user_id) max_created_at ON 
         (max_created_at.user_id = user_id AND max_created_at.max = created_at)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table like below. I want to be able to get a
Lets say I have the table below. I want to get all the friends,
I have such table (below). I want to get someone's detail information if someones
I have a table with below structure. I am not having control over changing
I have below table in SQL server 2008.Please help to get expected output Thanks.
I have a table (in an Oracle database) just like below: department ---------- Finance
Hi Suppose I have a table as below, I want to update the cat
I have a table as below and I want to update the values in
i have the table below <tr id=group_1>...</tr> <tr id=el>...</tr> <tr id=el>...<tr> <tr id=group_2></tr> <tr
I have a table like below: Table A ---------- ID Field1 Field2 Field3 1

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.