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

Merge

parents 3dec2b5c 252ab348
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
heikki@donna.mysql.fi
sasha@mysql.sashanet.com
jcole@abel.spaceapes.com
sasha@mysql.sashanet.com
tim@threads.polyesthetic.msg
+7 −0
Original line number Diff line number Diff line
@@ -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.