How do I select a(or some) random row(s) from a table using SQLAlchemy?
|
|
|
|
|
|
|
This is very much database specifc issue. I know that PostgreSQL and MySQL has abbility to order by random function, so You can use this in SQLAlchemy:
Next You need to limit query to amout of records You need (for example using .limit()). Bear in mind that at least in PostgreSQL selending random record has severe perfomance issues, here is good article about it. |
||
|
|
|
If you are using the orm and the table is not big (or you have its amount of rows cached) and you want it to be database independent the really simple approach is.
This is cheating slightly but thats why you use an orm. |
||||
|
|
|
I would suggest you use the Orm Table. SEe post #1. |
||
|
|
|
|
Theres a couple of ways through SQL, depending on which data base is being used. (I think SQLAlchemy can use all these anyways) mysql:
PostgreSQL:
MSSQL:
IBM DB2:
Oracle:
However I don't know of any standard way |
||
|
|
|
An enhanced version of Lukasz's example, in the case you need to select multiple rows at random:
So, this post is just to point out that you can use .in_ to select multiple fields at the same time. |
|||
|
