Find the output of the following SQL Query :
SELECT ROUND(7658.345, 2);
+--------------------+ | ROUND(7658.345, 2) | +--------------------+ | 7658.35 | +--------------------+
In the query, the ROUND function is used to round a number to 2 decimal places, resulting in 7658.35.
ROUND