Final answer:
To select records for customers who had their first pickup in May 2004 and sort them by last name, you can use the May Pickup Query. To determine the total weights of paper and other products each customer has had picked up, you can use the Customer Weight Query. To select customers with less than 10 pounds in either recyclable field, you can use the Low Volume Query.
Step-by-step explanation:
To create the May Pickup Query, you can use the following SQL statement:
SELECT * FROM CustomerInformation WHERE FirstPickup LIKE '05-2004%' ORDER BY LastName;
To create the Customer Weight Query, you can use the following SQL statement:
SELECT CustomerInformation.LastName, CustomerInformation.FirstName, SUM(PickupRecords.PaperWeight) AS TotalPaperWeight, SUM(PickupRecords.OtherWeight) AS TotalOtherWeight FROM CustomerInformation INNER JOIN PickupRecords ON CustomerInformation.CustomerID = PickupRecords.CustomerID GROUP BY CustomerInformation.LastName, CustomerInformation.FirstName;
To create the Low Volume Query, you can use the following SQL statement:
SELECT CustomerInformation.Name, CustomerInformation.Street, CustomerInformation.Address, PickupRecords.Weight FROM CustomerInformation INNER JOIN PickupRecords ON CustomerInformation.CustomerID = PickupRecords.CustomerID WHERE PickupRecords.Recyclable1 < 10 OR PickupRecords.Recyclable2 < 10;