diff --git a/framework/db/QueryInterface.php b/framework/db/QueryInterface.php index 4cf6dea24c..006eb55c1c 100644 --- a/framework/db/QueryInterface.php +++ b/framework/db/QueryInterface.php @@ -137,6 +137,9 @@ interface QueryInterface * - **or not like**: similar to the `not like` operator except that `OR` is used to concatenate * the `NOT LIKE` predicates. * + * - Additionally you can specify arbitrary operators as follows: A condition of `['>=', 'id', 10]` will result in the + * following SQL expression: `id >= 10`. + * * @param string|array $condition the conditions that should be put in the WHERE part. * @return static the query object itself * @see andWhere()