Finding Only the Most Current Row

Finding Only the Most Current Row

Question:
The Situation: I need to define some queries to extract data from an existing database (I am using MS Access 2.0). It consists of only two tables, from which the relevant columns are:

    Headers:  id, unitno, date, time    Measurements:  id, measno, measresult
The table called Headers holds data for a test (electronics production).Every time a test is performed, a unique ID is given to this test. If a Unit is tested more than one time, the same UnitNo will be present with different IDs and Times (and perhaps Dates). In the Measurements table,the results from the test are stored. Each test consists of severalmeasurements (several MeasNo’s), and the ID refers to the Headers table. If a test consists of say 50 measurements, this table will hold 50 times the records in Headers (50 for each ID). By looking up a UnitNo in the Headers table, the corresponding MeasNo’s and MeasResults can beretrieved.

The Problem: In some situations, only the latest test of a specific Unit is to be analyzed. I need to lookup the Headers table for a UnitNo, and return the ID for the latest test of that UnitNo. I tried to ORDER BY UnitNo, Date DESC, Time DESC in the Headers table. Then I just need to pick the ID of the first entry of each UnitNo. How do I do that? I tried to use GROUP BY UnitNo, but then I can’t get the ID. If I also GROUP BY ID (to get it), all entries of UnitNo are returned. I also tried to use SELECT TOP 1, but can’t get it to SELECT for each UnitNo. I tried to make different nested SELECTs, but can’t seem to get it right.How can I get the desired result?

Answer:
I’d recommend:

SELECT id, unitno, date, time FROM Headers    WHERE date+time IN        (SELECT MAX(date+time) FROM Headers        GROUP BY unitno);
Thanks to Carl Federl for pointing out that the above solutionsometimes reports duplicate rows. A correlated subquery can beused as a better solution:
    SELECT A.unitno, A.id, A.datetime FROM Headers AS A    WHERE A.datetime IN         (SELECT MAX(datetime) FROM Headers AS B WHERE B.unit = A.unit);

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as