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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:32:39+00:00 2026-06-10T19:32:39+00:00

In a project I am working on there are measurements stored in a database.

  • 0

In a project I am working on there are measurements stored in a database. A measurement consists of a worldcoordinate (posX, posY, posZ) a station identification number (stationID) and a time for measurement (time).

Sometimes a measurement is redone in the field for different reasons and then there are several measurements with the same coordinate and station id but performed at different times.

Is there a way to write an sql query such that I get all VALID measurements ie, only the latest ones in the case where the coordinates and station id are the same?

I am not very adept at SQL so I don’t even really know what to google for so any pointers are very much appreciateed even if you only know what type of command I should use 🙂

EDIT:

My task was just changed, apparently station id does not matter, only coordinates and times.

Also, I am using DISQLite3 that implements SQL-92.

  • 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-10T19:32:40+00:00Added an answer on June 10, 2026 at 7:32 pm

    Yes, you can do it in SQL.

    It seems you want to take the latest entry for each combination of station and co-ordinates – look at GROUP BY or ROW_NUMBER()

    Depending on your SQL variant (It’s helpful if you specify it), something like…

     select *
     from
         (Select *, 
                 row_number() over (Partition by coordinates, stationid order by measurementtime desc) rn
          from yourtable
         ) v
     where rn = 1
    

    Without Ranking functions

     select yourtable.* 
     from yourtable
          inner join
          (
               select coordinate, MAX(time) maxtime from yourtable
               group by coordinate 
          ) v
    on yourtable.coordinate = v.coordinate
    and yourtable.time = v.maxtime
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In a project I'm working on, there is a table of units and then
I'm working on a C++ project in which there are a lot of classes
I am working on a JAVA project in which there are multiple terminals. These
I am working on one project where there is a functionality need to implement
I am working on a project with OCaml and there are some problems regarding
I'm working on problem 9 in Project Euler: There exists exactly one Pythagorean triplet
So I'm working on a project where there are tasks that make up a
So I'm working on a project where there are tasks that make up a
I am working on a PHP project. There, I often use following syntax to
In the project i am currently working upon, there are lots and lots of

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.