A shipping company’s packages table includes a weight column…

A shipping company’s packages table includes a weight column. Management wants to know the lightest package shipped this year. Which query provides this? SELECT MIN(weight) FROM packages SELECT MAX(weight) FROM packages SELECT COUNT(weight) FROM packages SELECT AVG(weight) FROM packages Answer: SELECT MIN(weight) FROM packages Explanation: MIN retrieves the smallest value in the column, which is the lightest package. MAX gives the heaviest, COUNT gives the number of records, and AVG gives the average weight.