]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
add compound-where example
authorJonathan Ellis <jbellis@gmail.com>
Thu, 5 Oct 2006 16:27:33 +0000 (16:27 +0000)
committerJonathan Ellis <jbellis@gmail.com>
Thu, 5 Oct 2006 16:27:33 +0000 (16:27 +0000)
lib/sqlalchemy/ext/sqlsoup.py

index b8aaf2fa547af008c187e5fe5814e1d0600d39e1..be772555d197bffd85fd3825a8d6cf2d85e82bcc 100644 (file)
@@ -41,8 +41,15 @@ Field access is intuitive:
     >>> users[0].email
     u'student@example.edu'
 
-Of course, you don't want to load all users very often.  The common case is to
-select by a key or other field:
+Of course, you don't want to load all users very often.  Let's add a WHERE clause.
+Let's also switch the order_by to DESC while we're at it.
+    >>> from sqlalchemy import or_, and_, desc
+       >>> where = or_(db.users.c.name=='Bhargan Basepair', db.users.c.email=='student@example.edu')
+    >>> db.users.select(where, order_by=[desc(db.users.c.name)])
+    [MappedUsers(name='Joe Student',email='student@example.edu',password='student',classname=None,admin=0), MappedUsers(name='Bhargan Basepair',email='basepair@example.edu',password='basepair',classname=None,admin=1)]
+
+You can also use the select...by methods if you're querying on a single column.
+This allows using keyword arguments as column names:
     >>> db.users.selectone_by(name='Bhargan Basepair')
     MappedUsers(name='Bhargan Basepair',email='basepair@example.edu',password='basepair',classname=None,admin=1)