show/hide this revision's text 2 added 5 characters in body

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.

show/hide this revision's text 1

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)

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.