SELECT month, SUM(Insurance) AS Insur, SUM(Price) AS pr
FROM renter
GROUP BY (month);
SELECT month, SUM(priceOfSale) AS PS
FROM saled
GROUP BY (month);
SELECT Books.Title, Books.Description, Renters.Name
FROM Books INNER JOIN Renters ON Books.Title = Renters.RentedTitle