The MIN function works the same as the MAX function but finds the lowest value instead of the highest value.
SELECT product_name, MIN(price)
FROM products;
This query returns the product_name and the price fields of the record with the lowest price.
Use a MIN aggregation to find only the age of our youngest CashPal user in the United States in the users table. The country_code of the United States is US. Alias the returned age column to just be named "age".
| id | name | age | country_code | username | password | is_admin |