(This is the django version of the thread at SQL join: selecting the last records in a one-to-many relationship)
Suppose I have a table of customers and a table of purchases. Each purchase belongs to one customer. I want to get a list of all customers along with their last purchase. Can it be done without raw SQL and without multiple database queries?
You can't do this in one query in Django. You can get the customer with just the date of their most recent purchase like this:
but you don't automatically get access to the actual purchase this way.
Make sure you have a composite index on
purchases (customer, date)
if your table isInnoDB
, or onpurchases (customer, date, id)
if your table isMyISAM
.You can take a look at similar discussion:
Django Query That Get Most Recent Objects From Different Categories