Re: [web2py] format question

2015-07-14 Thread Dan Feeney
Try this: db((db.group.name=='manager')&(db.person.group==db.group.id)).select() -Dan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this

[web2py] format question

2015-07-12 Thread xmarx
In db, Does referenced field stored as formatted, or as id? for example: db.define_table('group', Field('name'), format = %(name)s) db.define_table('person', Field('name'), Field('sirname'),