vote up 2 vote down star

I am using a table called analyzed in Microsoft Access. It has many fields but the three ones being used for filtering in this case are analyzed.readings_miu_id, analyzed.ReadDate, analyzed.ReadTime. I need to pull the records from the "analyzed" table where readings_miu_id are grouped together then sorted by ReadDate but showing only the last entry for said date which could be the highest valued time in ReadTime. I've created a query:

SELECT readings_miu_id, Reading, ReadDate, ReadTime, 
    MIUwindow, SN, Noise, RSSI, OriginCol, ColID, Ownage
FROM analyzed
WHERE analyzed.ReadDate Between #4/21/2009# and #4/29/2009#  
AND analyzed.ReadTime= ( 
    SELECT TOP 1 analyzed.ReadTime 
    FROM analyzed 
    WHERE analyzed.readings_miu_id = *????*** 
    ORDER BY analyzed.ReadTime DESC);

*????*** is being used to show that im not sure what to put here

if i enter in a valid readings_miu_id i get one record with the highest time for that readings_miu_id.

How do i use a sub query like the one above to pull only the last ReadTime per readings_miu_id per ReadDate?

*readings_miu_id* is not the table ID, it is more similar to an Item Number or a Name

flag

So can someone tell me why I'm being down-voted? Is there a problem with my question or was someone just trying to get the "Critic" badge? – Bryan Jun 18 at 15:19

2 Answers

vote up 3 vote down check
 SELECT readings_miu_id
    , Reading , ReadDate , ReadTime
    , MIUwindow, SN, Noise, RSSI
    , OriginCol, ColID, Ownage 
 FROM analyzed AS A
    WHERE analyzed.ReadDate Between #4/21/2009# and #4/29/2009# 
       AND analyzed.ReadTime=
          (SELECT TOP 1 analyzed.ReadTime FROM analyzed 
             where analyzed.readings_miu_id = A.readings_miu_id 
                AND analyzed.ReadDate = A.ReadDate
             ORDER BY analyzed.ReadTime DESC);

I just aliased the main table as A and just refered to it in the subquery. Not sure if you need to filter by ReadDate in your subquery.

link|flag
this is what i was looking for thank you. i didn't know you could create a copy of the table like that to cross reference the row sql is looking at. Thanks – Bryan May 19 at 16:04
+1 Good query after all :) – Andomar May 19 at 20:56
Got a little help from my friends. – GuinnessFan May 20 at 11:50
vote up 0 vote down

this will get you close. The statement "where readings_miu_id are grouped together" is confusing me. not sure if you want a GroupBy or a sort on that field. This query will give youthe records from your analyzed table that have the same date, but the "biggest:" time for that given date. Sounds like it's what you wanted.

SELECT readings_miu_id, Reading, ReadDate, ReadTime, MIUwindow, SN, Noise, RSSI, OriginCol, ColID, Ownage 
FROM analyzed ,
(
  Select ReadDate as matchDate, Max(ReadTime) as matchTime
  FROM analyzed 
  Where analyzed.ReadDate Between #4/21/2009# and #4/29/2009# 
  Group by ReadDate
) dateAndTime
WHERE analyzed.ReadDate Between #4/21/2009# and #4/29/2009# AND ReadDate = dateAndTime.matchDate AND readTime = dateAndTime.matchTime  
Order By readDate
link|flag
I think the Top 1 should take care of getting the latest readtime. – GuinnessFan May 19 at 15:36
The max() here will get you one row per ReadDate group. – Andomar May 19 at 15:41
Then he just needs to include the ReadDate in the where clause of the subquery. – GuinnessFan May 19 at 15:52
this was close but it was only returning the highest time per day grouping instead of highest time Per readings_miu_id per day i.e. each readings_miu_id had multiple days and i need only the highest time per day for each readings_miu_id. It was very helpful though, thank you. – Bryan May 19 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.