Getting random row through SQLAlchemy - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T03:39:50Zhttp://stackoverflow.com/feeds/question/60805http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/60805/getting-random-row-through-sqlalchemy4Getting random row through SQLAlchemycnu2008-09-13T19:58:02Z2009-10-14T22:16:51Z
<p>How do I select a(or some) random row(s) from a table using SQLAlchemy? </p>
http://stackoverflow.com/questions/60805/getting-random-row-through-sqlalchemy/60811#60811-1Answer by Fire Lancer for Getting random row through SQLAlchemyFire Lancer2008-09-13T20:04:11Z2008-09-13T20:04:11Z<p>Theres a couple of ways through SQL, depending on which data base is being used.</p>
<p>(I think SQLAlchemy can use all these anyways)</p>
<p>mysql:</p>
<pre><code>SELECT colum FROM table
ORDER BY RAND()
LIMIT 1
</code></pre>
<p>PostgreSQL:</p>
<pre><code>SELECT column FROM table
ORDER BY RANDOM()
LIMIT 1
</code></pre>
<p>MSSQL:</p>
<pre><code>SELECT TOP 1 column FROM table
ORDER BY NEWID()
</code></pre>
<p>IBM DB2:</p>
<pre><code>SELECT column, RAND() as IDX
FROM table
ORDER BY IDX FETCH FIRST 1 ROWS ONLY
</code></pre>
<p>Oracle:</p>
<pre><code>SELECT column FROM
(SELECT column FROM table
ORDER BY dbms_random.value)
WHERE rownum = 1
</code></pre>
<p>However I don't know of any standard way</p>
http://stackoverflow.com/questions/60805/getting-random-row-through-sqlalchemy/60815#608154Answer by Łukasz for Getting random row through SQLAlchemyŁukasz2008-09-13T20:09:28Z2008-09-13T20:09:28Z<p>This is very much database specifc issue.</p>
<p>I know that PostgreSQL and MySQL has abbility to order by random function, so You can use this in SQLAlchemy:</p>
<pre><code>select.order_by(func.random()) # for PostgreSQL
select.order_by(func.rand()) # for MySQL
</code></pre>
<p>Next You need to limit query to amout of records You need (for example using .limit()).</p>
<p>Bear in mind that at least in PostgreSQL selending random record has severe perfomance issues, <a href="http://www.depesz.com/index.php/2007/09/16/my-thoughts-on-getting-random-row/" rel="nofollow">here</a> is good article about it.</p>
http://stackoverflow.com/questions/60805/getting-random-row-through-sqlalchemy/390676#3906763Answer by David Raznick for Getting random row through SQLAlchemyDavid Raznick2008-12-24T03:22:30Z2009-01-20T21:40:40Z<p>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.</p>
<pre><code>import random
rand = random.randrange(0, session.query(Table).count())
row = session.query(Table)[rand]
</code></pre>
<p>This is cheating slightly but thats why you use an orm.</p>
http://stackoverflow.com/questions/60805/getting-random-row-through-sqlalchemy/782514#782514-1Answer by dalloliogm for Getting random row through SQLAlchemydalloliogm2009-04-23T16:27:26Z2009-10-14T22:16:51Z<p>An enhanced version of Lukasz's example, in the case you need to select multiple rows at random:</p>
<pre><code>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))
</code></pre>
<p>So, this post is just to point out that you can use .in_ to select multiple fields at the same time.</p>
http://stackoverflow.com/questions/60805/getting-random-row-through-sqlalchemy/1355173#13551730Answer by Random for Getting random row through SQLAlchemyRandom2009-08-30T23:09:26Z2009-08-30T23:09:26Z<p>I would suggest you use the Orm Table. SEe post #1.</p>