I noticed something else in there that might be useful, if I'm understanding it:
db(OR(db.auth_user.first_name=='test', db.auth_user.last_name=='test')).select() I saw the AND and OR functions in there which seem to do the same thing as: db(db.auth_user.first_name=='test' | db.auth_user.last_name=='test').select() Did I read this right?

