目录

MS Access Round() 函数

示例

将"Products" 表中的“价格”列四舍五入为小数点后 1 位:

SELECT ProductName, Price, Round(Price, 1) AS RoundedPrice
FROM Products;
亲自试一试 »

定义和用法

Round() 函数将数字四舍五入到指定的小数位数。

笔记:如果表达式以 5 结尾,则该函数将四舍五入,使最后一位数字为偶数。这里有些例子:

回合(34.55, 1) - 结果:34.6(向上舍入)
回合(34.65, 1) - 结果:34.6(向下舍入)

语法

Round( expression, decimal_places)

参数值

Parameter Description
expression Required. A numeric expression to be rounded
decimal_places Optional. The number of decimal places to round the expression to. If omitted, the function rounds to the nearest whole number

技术细节

工作于: 从 Access 2000