Hi All,
I need to select the single latest book added to the daabase for EACH author.
For the sake of ease, let's suppose my data is all in one table that looks like this :-
book_id int(6),
title varchar(255),
author varchar(255),
date_added date,
... etc.
Whats the query to only select the latest book for each author??
Probably easy - but my brain just ain't seeing it 😕