ROUND() 函数将数字四舍五入到指定的小数位数。
笔记:另请参阅地面(),CEIL(),天花板(), 和截短()功能。
ROUND(
number,
decimals)
Parameter | Description |
---|---|
number | Required. The number to be rounded |
decimals | Optional. The number of decimal places to round number to. If omitted, it returns the integer (no decimals) |
工作于: | 从 MySQL 4.0 开始 |
---|
将 "Products" 表中的价格列四舍五入(保留小数点后 1 位):
SELECT ProductName, Price, ROUND(Price, 1) AS RoundedPrice
FROM Products;
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!