From 2422fbfc934c2fb3399c0e66c6633eaaa4d36c76 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Tue, 7 Sep 2010 20:43:19 +0000 Subject: [PATCH] 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 --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index c1c586aada9..87680d3e4d8 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -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.)