[sqlalchemy] Re: confusion with outer join setup

2010-03-18 Thread Michael Bayer
On Mar 18, 12:24 pm, Jonathan Vanasco wrote: > let me simplify this , maybe it'll make sense to someone presented > differently: > > # do we need to restrict this within a date range ? > dates= [] > if date_start: >         dates.append( class_a.timestamp_registered >= > date_start ) > if date_e

[sqlalchemy] Re: confusion with outer join setup

2010-03-18 Thread Jonathan Vanasco
let me simplify this , maybe it'll make sense to someone presented differently: # do we need to restrict this within a date range ? dates= [] if date_start: dates.append( class_a.timestamp_registered >= date_start ) if date_end: dates.append( class_a.timestamp_registered <= date_e