Challenge: Calculate Discounted Prices
Task
Swipe to start coding
Write a query to calculate the discounted price for each product. The discounted price should be the original price minus the discount, rounded to two decimal places.
- Select the columns
product_id,name,price, anddiscountfrom theproductstable. - Calculate the discounted price as
price - discountfor each product. - Round the discounted price to two decimal places.
- Include the calculated value as a column named
discounted_pricein the result set. - Return one row for each product.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 3. ChapterΒ 2
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Suggested prompts:
Can you explain this in simpler terms?
What are the main points I should remember?
Can you give me an example?
Awesome!
Completion rate improved to 2.86
Challenge: Calculate Discounted Prices
Swipe to show menu
Task
Swipe to start coding
Write a query to calculate the discounted price for each product. The discounted price should be the original price minus the discount, rounded to two decimal places.
- Select the columns
product_id,name,price, anddiscountfrom theproductstable. - Calculate the discounted price as
price - discountfor each product. - Round the discounted price to two decimal places.
- Include the calculated value as a column named
discounted_pricein the result set. - Return one row for each product.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 3. ChapterΒ 2
single