query = (db.products.type == 1)
query = query & (db.products.stock > 0)

fruits = db((db.products.type == 1) & (db.products.stock > 0)).select()

fruits = db(query).select()


Em sáb., 4 de abr. de 2020 às 11:36, Gaël Princivalle <
gaelprinciva...@gmail.com> escreveu:

> Hello.
>
> How can I build a query in 2 steps?
>
> query = db.products.type == 1
> query = query and db.products.stock > 0
>
> The final result must do something like that:
> fruits = db((db.products.type == 1) and (db.products.stock > 0)).select()
> Made like this:
> fruits = db(query).select()
>
> Thanks!
>
> --
> 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 web2py+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/web2py/4c069202-a423-458e-9305-e22322d32f72%40googlegroups.com
> <https://groups.google.com/d/msgid/web2py/4c069202-a423-458e-9305-e22322d32f72%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/CA%2BFgAe6SHhmGymG%2BXrmCgQgDJSyGkE%3D9oJD1yjt%3Dt%2BQ9Z8RdBg%40mail.gmail.com.

Reply via email to