Commit 2a4e281c authored by unknown's avatar unknown

Clear up how ROUND() works (i.e., not the way you think).


Docs/manual.texi:
  Clear up how ROUND() works.
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
parent e3dee8e0
heikki@donna.mysql.fi
tim@threads.polyesthetic.msg
......@@ -16449,6 +16449,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