From: Mike Bayer Date: Mon, 16 Oct 2006 18:16:57 +0000 (+0000) Subject: quote function names X-Git-Tag: rel_0_3_0~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61de5d0c9a8caf5e2c00bca1fcb42791855ce360;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git quote function names --- diff --git a/doc/build/content/sqlconstruction.txt b/doc/build/content/sqlconstruction.txt index ed8faae680..224eab1837 100644 --- a/doc/build/content/sqlconstruction.txt +++ b/doc/build/content/sqlconstruction.txt @@ -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 '~', '&', 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 '~', '&', and '|'. Math operators are '+', '-', '*', '/'. Any custom operator can be specified via the `op()` function shown below. {python} # "like" operator