Hi,
I want to join t_a  and t_b:
rows = db(db.t_a.created_by == 
auth.user.id).select(join=db.t_b.on(db.t_a.f_y == db.t_b.id))
that works,
But  first I want to filter out t_b, for example: t_b to include only 
records where f_x == 3.
what I tried did not work, it just "ignored" it, nothing was filtered:

t_b = db.t_b.f_x ==3
rows = db(db.t_a.created_by == 
auth.user.id).select(join=db.t_b.on(db.t_a.f_test == db.t_b.id))

So what is the way to do it?
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.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to