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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:41:40+00:00 2026-06-10T11:41:40+00:00

I should be able to do this but the brain appears to have melted

  • 0

I should be able to do this but the brain appears to have melted down

Database is postgres

Table structure is simple, just four columns that matter:

Location, User, Activity, DateTime

I need to sort by location and output just the latest occurrence of each activity that has taken place. I don’t know in advance what the activities are

Something like

Location    User    Activity   DateTime
London      Fred    A          08-29-2012
London      Fred    B          08-27-2012
Paris       John    A          08-29-2012
Tokyo       Fred    A          08-17-2012
Tokyo       Jane    D          08-29-2012

Thanks Folks

  • 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-10T11:41:41+00:00Added an answer on June 10, 2026 at 11:41 am

    Fastest way in PostgreSQL is probably with DISTINCT ON:

    SELECT DISTINCT ON (location, activity)
           location, activity, datetime, usr
    FROM   tbl
    ORDER  BY location, activity, datetime DESC, usr; -- usr only to break ties
    

    Short form with positional parameters:

    SELECT DISTINCT ON (1 ,2)
           location, activity, datetime, usr
    FROM   tbl
    ORDER  BY 1, 2, 3 DESC, 4;
    

    This combines sorting and reducing to distinct rows in one operation.
    More details, explanation and benchmark in this related answer.

    user is a reserved word. Don’t actually use it as column name. I substituted with usr.

    If performance should be crucial an index like the following will make the difference:

    CREATE INDEX tbl_multi_idx ON tbl (location, activity, datetime DESC, usr);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just starting out, this should be a simple one but I haven't been able
This should be simple task but i am not been able to find the
I know I should be able to solve this myself, but I've been banging
According to the Grails literature http://grails.org/doc/2.0.x/ref/Domain%20Classes/getAll.html I should be able to do this def
I am working on a bug in this program where it should be able
I am writing a wrapper library for log4net. This library should be able to
int i,n=20; for(i=0;i<n;i--) printf(-); I have been rattling my brain but have not been
I feel that this is something I should know, but does a java agent
I am just investigating the idea of this so have no example code. I've
This is a bit of a brain teaser and I have been trying to

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.