-
-
Save Ocramius/919465 to your computer and use it in GitHub Desktop.
<?php | |
$config = new \Doctrine\ORM\Configuration(); | |
/** OTHER STUFF */ | |
$config->addCustomNumericFunction('RAND', 'My\Custom\Doctrine2\Function\Rand'); | |
/** CONTINUES */ |
<?php | |
namespace My\Custom\Doctrine2\Function; | |
/** | |
* RandFunction ::= "RAND" "(" ")" | |
*/ | |
class Rand extends FunctionNode | |
{ | |
public function parse(\Doctrine\ORM\Query\Parser $parser) | |
{ | |
$parser->match(Lexer::T_IDENTIFIER); | |
$parser->match(Lexer::T_OPEN_PARENTHESIS); | |
$parser->match(Lexer::T_CLOSE_PARENTHESIS); | |
} | |
public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) | |
{ | |
return 'RAND()'; | |
} | |
} |
I am using this code in my project, but I have this error, any idea?
Message: [Syntax Error] line 0, col 130: Error: Expected end of string, got '('
@lmlopez it is working but you need to change something in your querybuilder or dql
$q = $this->createQueryBuilder('e')
->addSelect('RAND() as HIDDEN rand')
->orderBy('rand');
Warning @wardpeet: The doc says : "You cannot use a column with RAND() values in an ORDER BY clause, because ORDER BY would evaluate the column multiple times. "
@lmlopez I have the same error.
Sorting by rand is a BAD idea. Don't do it!
Why is sorting by RAND() a bad idea?!? When you need some random data from the database this is actually a very simple and fast solution (since ordering by rand doesn't force any index to be created by the database (btree indexes and the like that is)). So it's actually a very cheap solution in terms of processor cycles.
If you would implement this in code it would not only take more time (to implement) but also more processor cycles.
Care to comment on that?
I have the same problem
Message: [Syntax Error] line 0, col 130: Error: Expected end of string, got '('
Has someone fixed this yet?
I have the same problem
Message: [Syntax Error] line 0, col 226: Error: Expected end of string, got '('
Has someone fixed this yet?
http://www.doctrine-project.org/blog/doctrine2-custom-dql-udfs => 404
This code messed up when using with JOIN query.
Sorting by rand is a BAD idea. Don't do it!
@Ocramius why?
@jeroensen @dvapelnik IIRC, sorting by RAND()
forces a scan of all matching records, as RAND()
is just a numerical function that returns a random number. If there is a small number of matching records, it should be alright. But if you have millions of matching records and attempt something like ORDER BY RAND() LIMIT 10
, you might be in trouble, as the database will have to scan all these rows, remember all of them along with the number returned by RAND()
for each of them, then extract the few ones with the lowest number (someone correct me if I'm wrong on the details). This is very resource intensive.
There are more efficient ways to select randomly. See for example:
http://jan.kneschke.de/projects/mysql/order-by-rand/
This example uses syntax taken from http://www.doctrine-project.org/blog/doctrine2-custom-dql-udfs