diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-02-25 15:34:44 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-02-25 15:34:44 -0500 |
commit | 78398d0d94e638982876c99a3988ee18884a4905 (patch) | |
tree | 40a1dcca817a0d700c4cc11b30d4e3b79cab9223 /doc/manual.tex | |
parent | 59fdaa208b834ab2e6e23262405d0e9f4559e9aa (diff) |
Correct an SQL grammar omission (thanks to Alexei Golovko for spotting the problem)
Diffstat (limited to 'doc/manual.tex')
-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 169560f1..10d49f7e 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -2174,7 +2174,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 \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 \\ \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\} \\ |