From: Mike Bayer Date: Mon, 6 Aug 2007 16:23:03 +0000 (+0000) Subject: edits X-Git-Tag: rel_0_4beta1~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba701cde75357a84099cc7bbdf0f0dde8d717e78;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git edits --- diff --git a/doc/build/content/sqlexpression.txt b/doc/build/content/sqlexpression.txt index e623ca83fb..9b35b2f23f 100644 --- a/doc/build/content/sqlexpression.txt +++ b/doc/build/content/sqlexpression.txt @@ -368,9 +368,9 @@ So with all of this vocabulary, let's select all users who have an email address WHERE users.id = addresses.user_id AND users.name BETWEEN ? AND ? AND (addresses.email_address LIKE ? OR addresses.email_address LIKE ?) [', ', 'm', 'z', '%@aol.com', '%@msn.com'] - {stop}[(u'Wendy Williams, wendy@aol.com',)] + [(u'Wendy Williams, wendy@aol.com',)] -Once again, SQLAlchemy figured out the correct FROM clause for our statement. In fact it will determine the FROM clause based on all of its other bits; the columns clause, the whereclause, and also some other elements which we haven't covered yet, which include ORDER BY, GROUP BY, and HAVING. In the above case both the `users` and `addresses` table were mentioned plenty of times so they came out just fine. +Once again, SQLAlchemy figured out the FROM clause for our statement. In fact it will determine the FROM clause based on all of its other bits; the columns clause, the whereclause, and also some other elements which we haven't covered yet, which include ORDER BY, GROUP BY, and HAVING. ## Using Text {@name=text}