fixes #5147
[ci skip]
This commit is contained in:
Carsten Brandt
2014-09-24 14:16:34 +02:00
parent 9df21d46f3
commit 4772be9cc4

View File

@@ -102,7 +102,7 @@ interface QueryInterface
* - **or**: similar to the `and` operator except that the operands are concatenated using `OR`.
*
* - **not**: this will take only one operator and build the negation of it by prefixing the query string with `NOT`.
* For example `['not' => ['attribute' => null]]` will result in the condition `NOT (attribute IS NULL)`.
* For example `['not', ['attribute' => null]]` will result in the condition `NOT (attribute IS NULL)`.
*
* - **between**: operand 1 should be the column name, and operand 2 and 3 should be the
* starting and ending values of the range that the column is in.