+3 votes
in Class 12 by kratos

A numeric data field AMOUNT store a value 205.98. Round it *** using MySQL to :

(i) Upto 1 decimal place

(ii) to a whole number.

1 Answer

+2 votes
by kratos
 
Best answer

(i) SELECT ROUND (AMOUNT 1)

(ii) SELECT ROUND (AMOUNT,0)

...