0 votes
in Sql by

The SQL statement:

SELECT ROUND (65.726, -1) FROM DUAL;  

Prints:

Select the correct answer from below options:

a) is illegal

b) garbage

c) 726

d) 70

1 Answer

0 votes
by

d) 70

Here, the ROUND() function statement will produce the rounded result of the given number 65.726 from the left of decimal point up to 1.

...