diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-07-17 10:31:07 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-07-17 10:31:07 -0400 |
commit | 32f67637cd705840751bd1d8d37db87df5823a4b (patch) | |
tree | b6189f3df9a902cbff122b7df423b81ba87be3e8 | |
parent | 2eeea03973868f01aa1b85f41bdff3561be71838 (diff) | |
parent | 43f41fbfaa8f3030148c131628c5e9fe8fda9f66 (diff) | |
download | sqlalchemy-32f67637cd705840751bd1d8d37db87df5823a4b.tar.gz |
Merge branch 'patch-1' of https://github.com/tomsitter/sqlalchemy
-rw-r--r-- | doc/build/orm/tutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index f742151b0..9569e4b1f 100644 --- a/doc/build/orm/tutorial.rst +++ b/doc/build/orm/tutorial.rst @@ -1386,7 +1386,7 @@ is an important method at the center of usage for any SQL-fluent application. ON clause is a plain SQL expression. To control the first entity in the list of JOINs, use the :meth:`.Query.select_from` method:: - query = Session.query(User, Address).select_from(Address).join(User) + query = session.query(User, Address).select_from(Address).join(User) .. _ormtutorial_aliases: |