I'm using PropelFinder and I need to order my results numerically:
$this->scores = sfPropelFinder::from('Scores')->orderBy(Score','desc')-
>find();
I want them in order numerically - in other words, I want this:
1
750
1500
not this:
1
1500
750
How do I make the order by use the ABS() function that I can use in
MySQL?
Thanks!
Cindy
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---