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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:46:48+00:00 2026-05-23T13:46:48+00:00

Say I have a table with 3 cols: ActionId, uid & created. I want

  • 0

Say I have a table with 3 cols: ActionId, uid & created.

I want to group actions by the uid, but every time a new action is inserted into a group (by uid), it will push the group upto the top, and individual rows within that group ordered.

This is what I came up with in SQL:

select * from actions as a
inner join 
(   
    select aa.[uid], MAX(aa.[created]) as maxcreated 
    from actions as aa
    group by aa.[uid]
) as a2 on a2.uid = a.uid
order by a2.maxcreated desc, a.created desc

Is there a better way to achieve this in SQL, and also then how to do this in LINQ?

  • 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-23T13:46:48+00:00Added an answer on May 23, 2026 at 1:46 pm

    So you want each group ordered internally, and the groups order by the latest value, right? Okay, I think we can do that…

    var query = from action in actions
                group action by action.Uid into g
                orderby g.Max(action => action.Created) descending
                select new { Uid = g.Key,
                             Actions = g.OrderByDescending(action => action.Created) };
    
    foreach (var group in query)
    {
        Console.WriteLine("Uid: {0}", group.Uid);
        foreach (var action in group.Actions)
        {
            Console.WriteLine("  {0}: {1}", action.Created, action.ActionId);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have a Product and a ProductType table. I want a table
Let's say I have many records in this DB. But I want to clone
Say I have table with two columns: Name, Age. I want to design a
Say I have a table html like so and jquery. I want to find
let say i have table look like below actionTable ----------- id, user, actionName, time
Say I have a table 'orders' created as: CREATE TABLE orders (id SERIAL, customerID
Let's say I have table TabA with columns: col1 - primary key (but not
Say I have a table that fits 4 players: But only 3 players are
Say I have a table with two columns called A, and B. I want
Say i have a table row with the two text boxes and i want

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.