Commit 6d1ebdd6 authored by tim@threads.polyesthetic.msg's avatar tim@threads.polyesthetic.msg

Merge

parents 3dec2b5c 252ab348
heikki@donna.mysql.fi
sasha@mysql.sashanet.com
jcole@abel.spaceapes.com
sasha@mysql.sashanet.com
tim@threads.polyesthetic.msg
......@@ -16529,6 +16529,13 @@ mysql> select ROUND(1.58);
-> 2
@end example
Note that the behavior of @code{ROUND()} when the argument
is half way between two integers depends on the C library
implementation. Some round to the nearest even number,
always up, always down, or always towards zero. If you need
one kind of rounding, you should use a well-defined function
like @code{TRUNCATE()} or @code{FLOOR()} instead.
@findex ROUND()
@item ROUND(X,D)
Returns the argument @code{X}, rounded to a number with @code{D} decimals.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment