Skip to content

ROUND

  • x: This parameter signifies the number that needs to be rounded.
  • d: This parameter specifies the number of decimals to keep after rounding.
SELECT ROUND(12345.6789, 1)
12345.7

The ROUND function rounds a number to a specific decimal. The example shows rounding a number, 12345.6789, to one decimal point, resulting in 12345.7.