From: AmirSoroush Date: Thu, 19 Oct 2023 16:44:26 +0000 (+0300) Subject: Doc: Update doc/build/tutorial/data_select.rst (#10506) X-Git-Tag: rel_2_0_23~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18d6b50b65f67e79805349aa95ea48b770510316;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Doc: Update doc/build/tutorial/data_select.rst (#10506) Removed an extra "that" in a sentence. --- diff --git a/doc/build/tutorial/data_select.rst b/doc/build/tutorial/data_select.rst index abdbb2ec54..ffeb9dfdb6 100644 --- a/doc/build/tutorial/data_select.rst +++ b/doc/build/tutorial/data_select.rst @@ -1236,7 +1236,7 @@ organized into a subquery using :meth:`_sql.CompoundSelect.subquery`, which then links to ORM objects using the :func:`_orm.aliased` function. This works in the same way introduced at :ref:`tutorial_subqueries_orm_aliased`, to first create an ad-hoc "mapping" of our desired entity to the subquery, then -selecting from that that new entity as though it were any other mapped class. +selecting from that new entity as though it were any other mapped class. In the example below, we are able to add additional criteria such as ORDER BY outside of the UNION itself, as we can filter or order by the columns exported by the subquery::