I want the query to:
-Most sold beer in a given month by revenue.
-BreweryName & Addr that sold the most.
-The ABV (strength of the beer)
SELECT
BeerPrices.PricePerUnit,
Order.OrderDate,
Beers.ABV,
Brewery.BreweryName,
Brewery.Addr,
Order.OrderNo
FROM
BeerPrice, Order, Beers, Brewery
WHERE...