SQL UPDATE 中将值四舍五入到最接近的整数
我正在运行需要将值四舍五入到最接近的整数的 SQL。
我需要的是 45.01 舍入到 46。还有 45.49 舍入到 46。45.99 也舍入到 46。我希望所有内容都增加一位整数。
如何在如下 UPDATE 语句中实现此目的?
Update product SET price=Round
I'm running SQL that needs rounding up the value to the nearest whole number.
What I need is 45.01 rounds up to 46. Also 45.49 rounds to 46. And 45.99 rounds up to 46, too. I want everything up one whole digit.
How do I achieve this in an UPDATE statement like the following?
Update product SET price=Round
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您可以使用
ceiling
< /a> 函数;这部分 SQL 代码:每次都会得到“46”。
对于您的更新,我想说:
顺便说一句:在 MySQL 上,
ceil
是天花板
;不确定其他数据库系统,因此您可能必须使用其中之一,具体取决于您正在使用的数据库...引用文档:
给出的例子:
You could use the
ceiling
function; this portion of SQL code :will get you "46" each time.
For your update, so, I'd say :
BTW : On MySQL,
ceil
is an alias toceiling
; not sure about other DB systems, so you might have to use one or the other, depending on the DB you are using...Quoting the documentation :
And the given example :
尝试天花板...
http://en.wikipedia.org/wiki/Floor_and_ceiling_functions
Try ceiling...
http://en.wikipedia.org/wiki/Floor_and_ceiling_functions
对于 MS SQL CEILING(您的数字)会将其四舍五入。
FLOOR(您的号码)将向下舍入
For MS SQL CEILING(your number) will round it up.
FLOOR(your number) will round it down
将圆形和天花板结合起来以获得适当的圆形。
同时
和
Combine round and ceiling to get a proper round up.
while
and
如果要四舍五入,请使用舍入函数。当您想要获得仅大于参数的最小整数时,请使用上限函数。
例如:从 Dual 中选择 round(843.4923423423,0) 会给你 843 和
If you want to round off then use the round function. Use ceiling function when you want to get the smallest integer just greater than your argument.
For ex: select round(843.4923423423,0) from dual gives you 843 and
Ceiling 是您要使用的命令。
与 Round 不同,Ceiling 仅采用一个参数(您希望向上舍入的值),因此如果您想四舍五入到小数位,您需要先将数字乘以小数点后的位数,然后再除。
例子。
我想将 1.2345 四舍五入到小数点后两位。
Ceiling is the command you want to use.
Unlike Round, Ceiling only takes one parameter (the value you wish to round up), therefore if you want to round to a decimal place, you will need to multiply the number by that many decimal places first and divide afterwards.
Example.
I want to round up 1.2345 to 2 decimal places.
这取决于数据库服务器,但通常称为
CEIL
或CEILING
之类的名称。例如,在 MySQL 中...然后您可以执行
UPDATE PRODUCT SET Price=CEIL(some_other_field);
This depends on the database server, but it is often called something like
CEIL
orCEILING
. For example, in MySQL...You can then do
UPDATE PRODUCT SET price=CEIL(some_other_field);