Find the bakery’s distance from the market rounded to two decimal places.
Be sure to alias the column as distance_from_market.
my answer : SELECT ROUND(ingredients_cost, 2) as rounded_distance
FROM baked_goods;
is this wrong ?
Find the bakery’s distance from the market rounded to two decimal places.
Be sure to alias the column as distance_from_market.
my answer : SELECT ROUND(ingredients_cost, 2) as rounded_distance
FROM baked_goods;
is this wrong ?
Your query is of the ingredients_cost
column when it should be distance
, and your alias is rounded_distance
when it should be distance from market
. Lastly, your from clause is from baked_goods
when it should be bakeries
.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.