Commit d9c3e0a3 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed a minor typo in some sample SQL. Thanks for the report, Glen Jarvis...

Fixed a minor typo in some sample SQL. Thanks for the report, Glen Jarvis <glenjarvis.com@gmail.com>.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7717 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent fad8e8f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1382,7 +1382,7 @@ and then converted into a query using the ``query`` attribute::

This queryset will be evaluated as subselect statement::

    SELET ... WHERE blog.id IN (SELECT id FROM ... WHERE NAME LIKE '%Cheddar%')
    SELECT ... WHERE blog.id IN (SELECT id FROM ... WHERE NAME LIKE '%Cheddar%')

startswith
~~~~~~~~~~