Hương Le
0
Q:

SQL rounding numbers

SELECT CAST(ROUND(125.025000, 2) AS NUMERIC(36,2))
returns: 125.03
6
SELECT 2.555555; --> Result 2.555555
SELECT ROUND(2.555555); --> Result 3
SELECT ROUND(2.555555, 3); --> Result 2.556
SELECT ROUND(2.555555, 0); --> Result 3
1

  SELECT ROUND(235.415, 2) AS RoundValue; 
1

New to Communities?

Join the community