将"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 |
---|
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!