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.
