Class - 12 CBSE Computer Science Important Output Questions 2025
Find the output of the following SQL Query :
SELECT ROUND(7658.345, 2);
SQL Queries
5 Likes
Answer
+--------------------+
| ROUND(7658.345, 2) |
+--------------------+
| 7658.35 |
+--------------------+
Working
In the query, the ROUND
function is used to round a number to 2 decimal places, resulting in 7658.35.
Answered By
3 Likes