CBSE Class 12 Informatics Practices Question 67 of 81

MySQL Functions — Question 18

Back to all questions
18
Question

Question 11(i)

Find the output of the following SQL Query :

SELECT ROUND(7658.345, 2);
Answer
Output
+--------------------+
| ROUND(7658.345, 2) |
+--------------------+
|            7658.35 |
+--------------------+
Explanation

In the query, the ROUND function is used to round a number to 2 decimal places, resulting in 7658.35.