diff options
author | Adam Chlipala <adam@chlipala.net> | 2015-08-15 08:10:20 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2015-08-15 08:10:20 -0400 |
commit | ac2a4492e6e9447a1813e984910136b78978979c (patch) | |
tree | 5098a717f68c9ef6f5aeedf288a235237e460029 /doc | |
parent | df2b273877a4d40baa37bdb45b40169d2d525fd3 (diff) |
Add LIKE to the manual
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.tex b/doc/manual.tex index e140fac1..5c5e5cbb 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -2314,7 +2314,7 @@ $$\begin{array}{rrcll} &&& (E) & \textrm{explicit precedence} \\ \textrm{Nullary operators} & n &::=& \mt{CURRENT\_TIMESTAMP} \\ \textrm{Unary operators} & u &::=& \mt{NOT} \\ - \textrm{Binary operators} & b &::=& \mt{AND} \mid \mt{OR} \mid = \mid \neq \mid < \mid \leq \mid > \mid \geq \\ + \textrm{Binary operators} & b &::=& \mt{AND} \mid \mt{OR} \mid = \mid \neq \mid < \mid \leq \mid > \mid \geq \mid \mt{LIKE} \\ \textrm{Aggregate functions} & a &::=& \mt{COUNT} \mid \mt{AVG} \mid \mt{SUM} \mid \mt{MIN} \mid \mt{MAX} \\ \textrm{Directions} & o &::=& \mt{ASC} \mid \mt{DESC} \mid \{e\} \\ \textrm{SQL integer} & N &::=& n \mid \{e\} \\ |