]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
quote function names
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 16 Oct 2006 18:16:57 +0000 (18:16 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 16 Oct 2006 18:16:57 +0000 (18:16 +0000)
doc/build/content/sqlconstruction.txt

index ed8faae680c4d5b3fc01be727019d1e95d4e8021..224eab1837b4fbcfbd797a85d0b6562a6b2ef1b3 100644 (file)
@@ -309,7 +309,7 @@ Select statements can also generate a WHERE clause based on the parameters you g
 
 #### Operators {@name=operators}
 
-Supported column operators so far are all the numerical comparison operators, i.e. '==', '>', '>=', etc., as well as like(), startswith(), endswith(), between(), and in().  Boolean operators include not_(), and_() and or_(), which also can be used inline via '~', '&amp;', and '|'.  Math operators are '+', '-', '*', '/'.  Any custom operator can be specified via the op() function shown below.
+Supported column operators so far are all the numerical comparison operators, i.e. '==', '>', '>=', etc., as well as `like()`, `startswith()`, `endswith()`, `between()`, and `in()`.  Boolean operators include `not_()`, `and_()` and `or_()`, which also can be used inline via '~', '&amp;', and '|'.  Math operators are '+', '-', '*', '/'.  Any custom operator can be specified via the `op()` function shown below.
  
     {python}
     # "like" operator