Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Value from Field [Price] for most recent dated record

Status
Not open for further replies.

LittleSmudge

Programmer
Mar 18, 2002
2,848
0
0
GB
tblPricing
PricingId - Prine Key
PropRef - Foreign Key
PropPrice - Currency
DatePublished - Date

For a given [PropRef] there can be none, one or many record in the table.
I need a query that will produce one record per [PropRef] with the value in [PropPrice] which is the most recent ( according to the
[DatePublished] ). Max[DatePublished]

Note: this is not necessarily the most recent one in the table ( Highest PricingId ) as record order in the table can't be guaranteed.

I know I ought to be able to sort this but after too many years away from writing SQL my brain has gone rusty in that department.

Help someone please.

G LS
 
Just a 'shot in the dark', not tested:

Code:
Select PropRef, PropPrice, DatePublished
From tblPricing, [blue](Select PropRef, MAX(DatePublished) As MaxDate
From tblPricing Group By PropRef) As X[/blue]
Where PropRef = [blue]X. PropRef[/blue]
And DatePublished = [blue]X.MaxDate[/blue]

If you tell me it works, I am going to Vegas [wavey2]


---- Andy

There is a great need for a sarcasm font.
 
If Andy's doesn't work (which I expect it does) you can also try something like:

SQL:
SELECT *
FROM tblPricing
WHERE PricingID =  
(SELECT TOP 1 PricingID
 FROM tblPricing P
 WHERE P.PropRef = tblPricing.PropRef
 ORDER BY P.DatePublished DESC, PricingID)

Duane
Minnesota
Hook'D on Access
MS Access MVP 2001-2016
 
Andy & Duane - my grateful thanks to you both.
Both approaches work but with only 48 records so far I'm unable to assess any difference is speed.

And, as expected - my first reaction was - "Oh yes, nest two queries"
You've stirred long dormant memories. Thanks once again.

G LS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top