From e6463914d30f3607ac56d980896161b5b8b072fa Mon Sep 17 00:00:00 2001 From: Josiah White Date: Thu, 20 Oct 2022 11:55:17 -0700 Subject: [PATCH] Fixed #27587 -- Adding more text explaining the text. --- docs/topics/db/queries.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt index da9b9f9596..86b1319d0c 100644 --- a/docs/topics/db/queries.txt +++ b/docs/topics/db/queries.txt @@ -347,7 +347,8 @@ queryset. You may do this by converting the ``query`` attribute to a string. >>> str(q.query) This prints the SQL that is used to query the database. From there, you may -looks for unexpected clauses, etc. +look for unexpected clauses, etc. Note that this SQL may require modification +to be used against the database directly. It is useful as a reference first. .. _limiting-querysets: