I need to change my query to return only 2 decimal points
SELECT (AVG(cost)) AS 'Average Cost $'
FROM donuts
WHERE cost;
I don't want to use the ROUND function because I wont get a decimal.
SELECT ROUND(AVG(cost)) AS 'Average Cost $'
FROM donuts
WHERE cost;
Any Suggestions,