Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在web2py我可以执行以下操作:
web2py
rows = db().select(person.ALL)
这给了我数据库人员中的所有行。
我也可以这样做:
myset = db(person.name == 'Jim')
这给了我一组名为Jim.
Jim
我怎样才能得到一组所有人?
对于Set定义表中所有记录的对象,您可以执行以下操作:
Set
db(db.person)
这相当于:
db(db.person.id > 0)