The SELECT Clause 2
Q: Get the total value of each product in stock.
SELECT name, (unitPrice * inStock)
FROM Products;