Added BETWEEN description.

(Also unified the layout a little bit)
This commit is contained in:
Igor Hatarist 2016-11-28 17:47:10 +03:00
parent 0a2d1ebbb3
commit 735a0ff78a
2 changed files with 5 additions and 3 deletions

View File

@ -4250,13 +4250,14 @@ All operators are transformed to the corresponding functions at the query parsin
%%a = b%% - equals(a, b) function
%%a == b%% - equals(a, b) function
%%a != b%% - notEquals(a, b) function
<span class="inline-example">a &lt;> b</span> - notEquals(a, b) function
%%a &lt;> b%% - notEquals(a, b) function
%%a &lt;= b%% - lessOrEquals(a, b) function
<span class="inline-example">a >= b</span> - greaterOrEquals(a, b) function
%%a &gt;= b%% - greaterOrEquals(a, b) function
%%a &lt; b%% - less(a, b) function
<span class="inline-example">a > b</span> - greater(a, b) function
%%a &gt; b%% - greater(a, b) function
%%a LIKE s%% - like(a, b) function
%%a NOT LIKE s%% - notLike(a, b) function
%%a BETWEEN b AND c%% - equivalent to %%a &gt;= b AND a &lt;= c%%
==Operators for working with data sets==

View File

@ -4329,6 +4329,7 @@ LIMIT 10
%%a &gt; b%% - функция greater(a, b)
%%a LIKE s%% - функция like(a, b)
%%a NOT LIKE s%% - функция notLike(a, b)
%%a BETWEEN b AND c%% - равнозначно %%a &gt;= b AND a &lt;= c%%
==Операторы для работы с множествами==