Fun MySQL fact of the day: chaos without ORDER BY
ANSI SQL-92 states that the order of a result set in the absence of an ORDER BY
is implementation specific. This means that the same query without an ORDER BY
clause run n
times may return rows in n
different orders. ... read more