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

The Archive Base Latest Questions

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

I have users table, each user have multiple records. I need to fetch the

  • 0

I have users table, each user have multiple records. I need to fetch the latest inserted records of each user. How is it possible using MySQL

users table

id      name   value    updated_at

1       abc    123      2011-02-03
2       xyz    qwe      2011-04-03
3       abc    asd      2011-08-08
4       xyz    poi      2011-08-07

My output should be

id      name   value    updated_at

3       abc    asd      2011-08-08
4       xyz    poi      2011-08-07

I used Queries like

 select id,name,value,updated_at  from users group by name having max(updated_at)

 select id,ep_name,position,max(updated_at)  from test1 group by ep_name having max(updated_at)

But I was not able to get the desired result. I get the max(updated_at) value but not able to get the matching row. Please help

Note: Can this be done without using sub-query. Please help

Thanks in advance

  • 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-24T21:05:49+00:00Added an answer on May 24, 2026 at 9:05 pm
    SELECT
      users.id,users.name, users.`value`, users.`updated_at`
    FROM
      users
    INNER JOIN
    (
     SELECT name, MAX(updated_at) AS `updated_at`
     FROM
      users
     GROUP BY
      name
    ) max_users
    ON
      users.name = max_users.name
    AND
      users.updated_at = max_users.updated_at
    

    Dan thanks a lot… 🙂 small change in group by to match my output

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table with user items. Each user may have several types of
I have a table where new data gets filled each time a user clicks
I have a users table in a database, where the user enters a form
I have users table. There are three other tables: developers, managers, testers. All of
i have users table and i have posts table i want select from users
I have a table users which has a primary key userid and a datetime
I have a table [Users] with the following columns: INT SmallDateTime Bit Bit [UserId],
I have a table Users and a table Items In the Items table, I
I have a table called UserPermissions with a FK to the users table by
I have a items table with 1 million rows and a users table 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.