Kaydet (Commit) 2422fbfc authored tarafından Luke Plant's avatar Luke Plant

Fixed #13414 - QuerySet API ref wrong sql equivalent in __year lookup example

Thanks to idle for report and patch



git-svn-id: http://code.djangoproject.com/svn/django/trunk@13692 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 0b37d564
......@@ -1556,7 +1556,7 @@ Example::
SQL equivalent::
SELECT ... WHERE EXTRACT('year' FROM pub_date) = '2005';
SELECT ... WHERE pub_date BETWEEN '2005-01-01' AND '2005-12-31 23:59:59.999999';
(The exact SQL syntax varies for each database engine.)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment