Informatics Practices

Write the output of the following SQL command :

SELECT Round(49.88);
  1. 49.88
  2. 49.8
  3. 49.0
  4. 50

SQL Queries

1 Like

Answer

50

Reason — The ROUND() function rounds the numeric value "49.88" to the nearest whole number, which is 50.

Answered By

2 Likes


Related Questions