Consider the decimal number x with value 8459.2654. Write commands in SQL
to:
i. round it off to a whole number
ii. round it to 2 places before the decimal
Answers
Answered by
2
SELECT CEILING(8459.2654, 2);
SELECT ROUND(8459.2654, 2);
Similar questions