Commit 71775a80 authored by Sinisa@sinisa.nasamreza.org's avatar Sinisa@sinisa.nasamreza.org

Merge sinisa@work.mysql.com:/home/bk/mysql-4.0

into sinisa.nasamreza.org:/mnt/work/mysql-4.0
parents 002d1c69 8f539d2e
......@@ -33868,6 +33868,11 @@ Returns the minimum or maximum value of @code{expr}. @code{MIN()} and
@code{MAX()} may take a string argument; in such cases they return the
minimum or maximum string value. @xref{MySQL indexes}.
There is one inconsistency in MySQL in handling @code[ENUM] and @code[SET]
types when it comes to @code{MIN()}, @code{MAX()} and other aggregating
functions. MySQL will compare values based on string values of the columns,
instead of it's relative position. This will be fixed in future.
@example
mysql> SELECT student_name, MIN(test_score), MAX(test_score)
-> FROM student
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