Computer Science, asked by dishamehra389, 5 months ago


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 sujal23805
4

Python is dynamically typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly, procedural), object-oriented, and functional programming. Python is often described as a "batteries included" language due to its comprehensive standard library.

Answered by deyshibangi26
0

Answer:

i) select round(8459.2654);

ii) select round (8459.2654,2)

Similar questions