ROUND ( numeric_expression , length)
numeric_expression
Is an expression of the exact numeric or approximate numeric data type category.
length
Is the precision to which numeric_expression is to be rounded. length must be an expression of type tinyint, smallint, or int. When length is a positive number, numeric_expression is rounded to the number of decimal positions specified by length. When length is a negative number, numeric_expression is rounded on the left side of the decimal point, as specified by length. So the "3" means rounded to the number(3) of decimal positions. Regards, Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.