Django Query Relations Behaviour -


okay there way filter objects records associated records. right join maybe?

basically, want select records b has foreign key whilst using clause on b. making sound more complicated is? don't need records b, a; maybe subquery?

i'm relatively new django's queries , i've done of simpler stuff.

your question little vague, if understand correctly work this:

class a(models.model):     pass  class b(models.model):     = models.foreignkey(a)     some_field = models.integerfield()  a.filter(b__some_field=5).distinct() 

this joins 2 tables , filters on b's some_field. distinct() makes sure unique as returned. see documentation on lookups span relationships.


Comments

Popular posts from this blog

How to access named pipes using JavaScript in Firefox add-on? -

multithreading - OPAL (Open Phone Abstraction Library) Transport not terminated when reattaching thread? -

node.js - req param returns an empty array -