There is three ways to select NULL records from table with Django ORM:

1. Model.objects.filter(field=None)
2. Model.objects.filter(field__exact=None)
3. Model.objects.filter(field__isnull=True)

They all seem to work.
Which is the best way and why?

-- 
regards,
Mihail

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to