Changeset 8978
- Timestamp:
- 09/07/08 13:46:11 (4 months ago)
- Files:
-
- django/trunk/docs/topics/db/queries.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/topics/db/queries.txt
r8843 r8978 337 337 >>> Entry.objects.get(headline__exact="Man bites dog") 338 338 339 Wo rld generate SQL along these lines:339 Would generate SQL along these lines: 340 340 341 341 .. code-block:: sql … … 429 429 those latter objects, you could write:: 430 430 431 Blog.obje tcs.filter(entry__author__isnull=False,431 Blog.objects.filter(entry__author__isnull=False, 432 432 entry__author__name__isnull=True) 433 433
