Skip to content
Advertisement

How to show the most recent value for each row [closed]

This is my current query. I used an inline view to only show the top 5 results for the companies with the highest volume of shares traded at a specific stock exchange. Alongside this, I want to show the most recent price for each row. This information is found in the stock_price table with a respective date.

enter image description here

My attempt:

The output:

enter image description here

Advertisement

Answer

You could do something like this (not tested; explained after the query):

HIGH_VOLS is the query you have already. It finds the five stocks with the highest volume on a given exchange – and on a given date if you will add that in the query; you didn’t do that in your query, and you didn’t describe your data in enough detail to attempt to add that in the query, but you should be able to do that yourself. Note that the same observation (about date) applies to the second query in the WITH clause.

LAST_PRICES selects prices from the price table, filtered for the exchange, for the five stocks that were found in the first subquery, and for the desired date (after you add that in). It uses the aggregate LAST function – a very useful aggregate function for this kind of query, unfortunately ignored by many developers.

The last step is to join the two tables. It is best to join the tables only after the two aggregations. (In any case, if statistics are up-to-date, the optimizer will find the best order of operations regardless of how you write the query, as long as it is written correctly. In fact, the optimizer will probably choose to do the “top-five” aggregation just on the “trades” table, and join to “company” only at the very last step.)

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement