Micro-optimization for MySQL order by rand

This commit is contained in:
Timothy Warren 2014-04-07 10:02:52 -04:00
parent 3eeea75b54
commit 87754e6f2c
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class MySQL_SQL extends Abstract_SQL {
*/
public function random()
{
return ' RAND()';
return ' RAND() DESC';
}
// --------------------------------------------------------------------------