Doug B wrote: > I think you want filter's evil twin exclude: I know about exclude() but I don't see how to use it here.
I want s1==1 OR s2!=1, so for example records (s1=1, s2=1) and (s1=2, s2=2) would be accepted. filter(s1=1).exclude(s2=1) is s1==1 AND s2!=1; it will not retrieve either of the above examples. Kent --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

