調べていて、パッと出てこなかったのでまとめます。
こういう時のやつ↓
$query = $articles->find()
->where(function (QueryExpression $exp) {
return $exp
->eq('author_id', 2)
->eq('published', true)
->notEq('spam', true)
->gt('view_count', 10);
});
ソース引用:https://book.cakephp.org/3/ja/orm/query-builder.html
一覧
演算子 | 意味 | 英語 | 一般的な記号 |
---|---|---|---|
eq | 等しい | equal | =, == |
notEq | 等しくない | not equal | <>, != |
gt | より大きい | greater than | > |
ge | 以上 | greater than or equal | >= |
lt | より小さい | less than | < |
le | 以下 | less than or equal | <= |
まとまってる比較演算子のサイトのテーブルを引用しました。
引用:https://step-learn.com/article/powershell/011-operator-compare.html