The solution is simply to add them :) http://web2py.com/books/default/chapter/29/06/the-database-abstraction-layer#Combining-rows
Got help in the Telegram Web2py International Support Group at https://t.me/web2py_world/ terça-feira, 16 de Abril de 2019 às 16:11:09 UTC+1, João Matos escreveu: > > Is it possible to update a Rows object with another Rows object? > > I would like to do something similar to this (except that update does not > exist in Rows) > > rows = db(db.wo.id == int(request.args[0])).select() > if len(request.args) > 1: > for id_ in request.args[1:]: > rows.update(db(db.wo.id == int(id_)).select() > > -- 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 message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

