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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:40:02+00:00 2026-05-27T19:40:02+00:00

How can we write the query for getting a set of rows where it

  • 0

How can we write the query for getting a set of rows where it was last updated grouped by a field name . Example

no – siteid – status – created_at

the ‘no’ number increases continuously as its the status report provided from another source. As in , Insertion happens 24/7 at some interval. But i want to check the status of 10 sites at the second i run the query .

There are only 10 sites . and i want to generate the report of the status of these 10

as in the last inserted query will give us the current status of the site.

I tried this

SELECT created_at,siteid  FROM [TOC].[dbo].[frame1] GROUP BY siteid ORDER BY created_at DESC

But no luck

  • 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-27T19:40:03+00:00Added an answer on May 27, 2026 at 7:40 pm

    I’m not actually sure what you want, can you give example input and output data?

    For now here is something that might be useful to you…

    WITH
      sequenced_data AS
    (
      SELECT
        ROW_NUMBER() OVER (PARTITION BY site_id ORDER BY created_at DESC) AS sequence_id,
        *
      FROM
        [TOC].[dbo].[Frame1]
    )
    SELECT
      *
    FROM
      sequenced_data
    WHERE
      sequence_id = 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In SQL one can write a query that searches for a name of a
how can i write the query, to update the table videos , and set
How can I write a query similar to this one in LINQ to SQL
How can I write a LINQ query that returns an hierachical anonymous type from
How can I write single UPDATE query to change value of COL1 to ‘X’
Using the C# compilers query comprehension features, you can write code like: var names
I am trying to write a query for SQL Server 2005 but I can't
can anyone help me write a linq query, its a bit confusing... Basically i
Can anyone tell me how to write a nested SQL query like SELECT *
I can write: update my_table set xml = updateXML(xml, '/a/b', '1') where document_id =

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.