文章涉及where、 addParams 、filterWhere 、andWhere、orWhere、 andFilterWhere()、 orFilterWhere()、andFilterCompare()
但是格式是一样的
字符串格式’status=1’
哈希格式’status’ => 1, ‘type’ => 2]
操作符格式’like’, ‘name’, ‘test’]
字符串和哈希格式很好理解,我们来看看操作符格式,因为操作符格式可以组成相对复杂的查询语句
最简单的就是官方给的例子
$status = 10;
$search = ‘yii’;
$query->where([‘status’ => $status]);
if (!empty($search)) {
$query->andWhere([‘like’, ‘title’, $search]);
}
生成的语句就是10) AND (title
LIKE ‘%yii%’)
操作符格式
[操作符作符, 操作数1, 操作数2, …]
第一个参数是操作符
操作符包括and、or、 like、in、 between等
第二个第三个都是操作数
0cb4d39e-418f-4183-a900-8a4ab5b1aadf.png
第一种最简单的就是上面提到的例子
andWhere([‘like’, ‘title’,‘搜索的标题’]);
生成的语句
… WHERE (status
= 10) AND (title
LIKE ‘%yii%’)
第二种二种
addWhere([‘and’, ‘id=1’, ‘name=2’]);
生成的语句