S
Steven Spits
Hi,
This is the SQL statement you need:
SELECT TOP 3 Author, COUNT(Author) AS Total
FROM Books
GROUP BY Author
ORDER BY Total DESC
With kind regards,
Steven Spits
- - -
Basicly i want to display the names of the authors that published more
books.
This is the SQL statement you need:
SELECT TOP 3 Author, COUNT(Author) AS Total
FROM Books
GROUP BY Author
ORDER BY Total DESC
With kind regards,
Steven Spits
- - -