> select * from table WHERE field>= ${rand(1, max)} ORDER BY field ASC
> LIMIT 1
>
> OR
>
> select * from table ORDER BY (field>= ${rand(1, max)}) DESC, field
> ASC LIMIT 1
>
> If you're use case is more demanding/complex than that here's a
> behavior which does the above using a field named "random" and even
> allows you to paginate 'random' data:
> https://github.com/AD7six/mi/blob/master/models/behaviors/random.php
Thanks for the tip, AD.
Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
No comments:
Post a Comment