Hi, I have a database of products, orders and order details. I am trying to write a query that returns the most recent unit prices.
This means that I need to see each item that has been sold, and it's most recent price sold. This is what I wrote so far:
SELECT ItemNumber, Max(ClientOrderDate)...