Hello All,
I have a query as such:
what I want to do is use all of the Dates in the column "MaxOfDates" in a WHERE clause. I can do this by making the query above real and saving this information in a table but I would rather not have this table and embed it directly into the query I really want.
Something like...
I have a query as such:
Code:
SELECT Data.Model, Max(Data.Date) AS MaxOfDate
FROM Data
Something like...
Code:
SELECT Data.Model, Date.Data FROM Data WHERE Date.Date In(*this is where I want the dates*)