show/hide this revision's text 2 deleted 6 characters in body

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
random rand = int(session.query(Table).count() * random.random()random.randrange(0, session.query(Table).count()) 
row = session.query(Table)[randomsession.query(Table)[rand]

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

show/hide this revision's text 1

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
random = int(session.query(Table).count() * random.random()) 
row = session.query(Table)[random]

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