So we have 3 relevant tables:
bookwith attributestitle, numberofpagespersonwithlast nameandidwriteswithauthor(=person.id) andbook(=book.title)
So we want to find the last name of each person who is an author and the number of pages of his book with the highest page number.
We tried this:
SELECT lastname, numberofpages
FROM book, person, writes
WHERE person.id=writes.author AND book.title=writes.book
this returns:
author A number of pages of his book 1
author A number of pages of his book 2
author B number of pages of his book 1
and so on...
How can we make it that it only gives one row per author which contains only the number of pages of the book with the highest number? We tried all kinds of subselects with max(numberofpages) but can't get it to work.