I'm sending the next request in my data base:
Select Book.Name as 'Book', Count([dbo].[Order].ShopperId) as 'Amount orders'
from Book, [dbo].[Order]
where Book.BookId = [dbo].[Order].BookId and [dbo].[Order].Amount = 5;
And getting the next error:
Column 'Book.Name' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause
How do I change my request to make it work?