How do I get a random row in CakePHP 3.0?

Coreus

I'm trying to retrieve a random row with CakePHP 3.0 RC-1, I've looked into the docs.

Using what I had from CakePHP 2.X and putting that as a starting point for getting a random row in CakePHP 3.0 RC-1. However, this is apparently not doing it for Miss Cake:

$result = $this->Game->find('all')
            ->order('rand()')
            ->limit(1);

The result yields nothing. There is data in the database, and I am able to retrieve single records. (I.e $this->Game->get(20) works like it should).

José Lorenzo Rodríguez

Just use "first" for getting the first result:

$result = $this->Game->find('all')
        ->order('rand()')
        ->first();

Alternatively, you can make it work like get() in that it will return an exception if no results are found:

$result = $this->Game->find('all')
        ->order('rand()')
        ->firstOrFail();

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How I do do get session in model? CakePHP 3.x

From Dev

How do I get first item from CakePHP 3 results object

From Dev

How do I get the table schema/columns from an entity object in cakephp 3?

From Dev

I need an idea of how to get a unique random row from the databse

From Dev

How do I get a random number/letter generator to generate 3 Letters then 6 Numbers? in WPF

From Dev

How do I get count of a row in SQL

From Dev

How do I get a list of all functions inside a controller in cakephp

From Dev

How do I get a list of all functions inside a controller in cakephp

From Dev

How do I generate random numbers from [0,1]?

From Dev

CakePHP 3 - How do I use subquery in IN condition?

From Dev

How do I create a model in cakephp3 which is not ORM?

From Dev

How can I get the className of my table in cakephp 3?

From Dev

How do I get the rank / row number for a row?

From Dev

How do i get the row values instead of the row names

From Dev

How do I get row values from row counts

From Dev

How do I create random matrix where each column is all zeroes except for one random row?

From Dev

How to do subquery in CakePHP 3

From Dev

how do I get rid of random background grid from arrangeGrob

From Dev

How do I get random numbers in Elm 0.13 without a signal?

From Dev

How do I get a random number with a negative number in range?

From Dev

How do I get random numbers in Elm 0.13 without a signal?

From Dev

How do I get a random anyobject from an unordered array of anyobject?

From Dev

How do I decrease the timeouts to create a c3p0 ComboPooledDataSource and get an Oracle db connection?

From Dev

How do I decrease the timeouts to create a c3p0 ComboPooledDataSource and get an Oracle db connection?

From Dev

How do I generate random points in 3D space?

From Dev

how get random row laravel-5

From Dev

How to get random row from file in JMeter

From Dev

How to get random row from file in JMeter

From Dev

How do I implement a reusable validator that I have created for cakephp 3?

Related Related

  1. 1

    How I do do get session in model? CakePHP 3.x

  2. 2

    How do I get first item from CakePHP 3 results object

  3. 3

    How do I get the table schema/columns from an entity object in cakephp 3?

  4. 4

    I need an idea of how to get a unique random row from the databse

  5. 5

    How do I get a random number/letter generator to generate 3 Letters then 6 Numbers? in WPF

  6. 6

    How do I get count of a row in SQL

  7. 7

    How do I get a list of all functions inside a controller in cakephp

  8. 8

    How do I get a list of all functions inside a controller in cakephp

  9. 9

    How do I generate random numbers from [0,1]?

  10. 10

    CakePHP 3 - How do I use subquery in IN condition?

  11. 11

    How do I create a model in cakephp3 which is not ORM?

  12. 12

    How can I get the className of my table in cakephp 3?

  13. 13

    How do I get the rank / row number for a row?

  14. 14

    How do i get the row values instead of the row names

  15. 15

    How do I get row values from row counts

  16. 16

    How do I create random matrix where each column is all zeroes except for one random row?

  17. 17

    How to do subquery in CakePHP 3

  18. 18

    how do I get rid of random background grid from arrangeGrob

  19. 19

    How do I get random numbers in Elm 0.13 without a signal?

  20. 20

    How do I get a random number with a negative number in range?

  21. 21

    How do I get random numbers in Elm 0.13 without a signal?

  22. 22

    How do I get a random anyobject from an unordered array of anyobject?

  23. 23

    How do I decrease the timeouts to create a c3p0 ComboPooledDataSource and get an Oracle db connection?

  24. 24

    How do I decrease the timeouts to create a c3p0 ComboPooledDataSource and get an Oracle db connection?

  25. 25

    How do I generate random points in 3D space?

  26. 26

    how get random row laravel-5

  27. 27

    How to get random row from file in JMeter

  28. 28

    How to get random row from file in JMeter

  29. 29

    How do I implement a reusable validator that I have created for cakephp 3?

HotTag

Archive