SESSION NAME: SQL Functions - 2.

QUESTION NAME: Round and Square root Function.


TABLE DESCRIPTION:
In this task, the user needs to write a query to implement
Round and Square root function.


Note: Use SQL in-built Function to calculate round and
square root function for items_ordered table.


The user needs to implement round and square root
function for the column price in items_ordered table.


Round the price method TWO digits.

Hint: round(price,2)

Input Format

The items_ordered table containing data for a company is
described as follows:

CODE:
select round(price,2), sqrt(price) from items_ordered;