up vote 7 down vote favorite
share [g+] share [fb]

How do I select a(or some) random row(s) from a table using SQLAlchemy?

link|improve this question

53% accept rate
feedback

5 Answers

up vote 11 down vote accepted

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:

select.order_by(func.random()) # for PostgreSQL

select.order_by(func.rand()) # for MySQL

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.

link|improve this answer
2  
Where is the func module? Is there any docs in SA? – cnu Sep 13 '08 at 20:16
2  
+1. Same as Postgres works for SQLite: select.order_by(func.random()).limit(n) – Adam Bernier Apr 24 '10 at 7:11
feedback

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.

import random
rand = random.randrange(0, session.query(Table).count()) 
row = session.query(Table)[rand]

This is cheating slightly but thats why you use an orm.

link|improve this answer
rand = random.randrange(0, session.query(Table).count()) – Alabaster Codify Jan 20 '09 at 20:51
yep did not know the idiomatic way, will update – David Raznick Jan 20 '09 at 21:39
feedback

I would suggest you use the Orm Table. SEe post #1.

link|improve this answer
feedback

An enhanced version of Lukasz's example, in the case you need to select multiple rows at random:

import random

# you must first select all the values of the primary key field for the table.
# in some particular cases you can use xrange(session.query(Table).count()) instead
ids = session.query(Table.primary_key_field).all() 
ids_sample = random.sample(ids, 100)

rows = session.query(Table).filter(Table.primary_key_field.in_(ids_sample))

So, this post is just to point out that you can use .in_ to select multiple fields at the same time.

link|improve this answer
well, you could at least explain the negative votes. – dalloliogm Oct 14 '09 at 22:16
This got downvoted (I'd guess) because it causes every single row in a table to be pulled in before picking a random one. It loses because this would hang a thread for an insane amount of time on a big table, as all the data has to make it to your python process before it can do anything. SQL has functions to order by RAND() for a reason, and they should be used. – Trey Stout Dec 21 '10 at 20:02
I thought that the point of this question was to avoid using SQL's RAND function, for some reason. This answer is a generalization of David Raznick's answer to the cases where you want to select multiple entries at once; in that case you can't use the standard python getter ([]). Anyway, I wonder if operator.itemgetter may work better.. – dalloliogm May 19 '11 at 15:07
feedback

Theres a couple of ways through SQL, depending on which data base is being used.

(I think SQLAlchemy can use all these anyways)

mysql:

SELECT colum FROM table
ORDER BY RAND()
LIMIT 1

PostgreSQL:

SELECT column FROM table
ORDER BY RANDOM()
LIMIT 1

MSSQL:

SELECT TOP 1 column FROM table
ORDER BY NEWID()

IBM DB2:

SELECT column, RAND() as IDX
FROM table
ORDER BY IDX FETCH FIRST 1 ROWS ONLY

Oracle:

SELECT column FROM
(SELECT column FROM table
ORDER BY dbms_random.value)
WHERE rownum = 1

However I don't know of any standard way

link|improve this answer
1  
Yeah. I know how to do it in SQL (I posted that answer in beta.stackoverflow.com/questions/19412/…) but was searching for a SQLAlchemy specific solution. – cnu Sep 13 '08 at 20:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.