这是我的问题:MySQL "Or" Condition
解决方案是对OR语句进行分组,但我正在使用CodeIgniters Active Record。有没有办法使用Active Record对OR语句进行分组?或者我是否必须自己编写查询?
我正在$this->db->where()
使用$this->db->or_where()
它会像这样编写查询:
WHERE title = 'foobar' AND category = 2 OR category = 3
但我需要的是:
WHERE title = 'foobar' AND (category = 2 OR category = 3)
我不能这样做:
$this->db->where("title = 'foobar' AND (category = 2 OR category = 3)");
因为我正在使用foreach循环添加OR
答案 0 :(得分:2)
您可以按照here所述的方式手动执行:
自定义字符串:您可以手动编写自己的子句:
$ where =" name =' Joe' AND status =' boss'或状态='有效'";
$这 - > DB-化合物其中($其中);
关于你的问题:
$this->db->where("category = 1 AND (category = 2 OR category = 3)");
在 3.0-dev :
中$this->db->select()
->group_start()
->or_like([ 'category' => 2, 'category' => 3 ])
->group_end()
->where([ 'category' => 1 ]);
如果您正在使用CI 2.2,请查看this question上的答案。 选择接受以外的答案。
或者只是尝试this:
$categories = array(2, 3);
array_walk($categories, function(&$cat) { $cat = 'category = ' . $cat; });
$catstring = implode(" OR ", $categories);
$where = "category = 1 AND ($catstring)";
// => category = 1 AND (category = 2 OR category = 3)
$this->db->where($where);
答案 1 :(得分:1)
(array)
生成 OR 你可以简单地使用
$cat_array=array(2,3,4,5,6,7);
$this->db->select('col1, col2')->from('table')->where("col1",1)->where_in('col2', $cat_array);
将生成
SELECT `col1`, `col2` FROM (`table`) WHERE `col1` = 1 AND `col2` IN (2, 3, 4, 5, 6, 7)
答案 2 :(得分:0)
你无法使用数据库主动记录方法(where,or_where)操纵地面条件查询,我会建议在where()
方法中将其作为刺痛传递
$this->db->where("category = 1 AND (category = 2 OR category = 3)");
答案 3 :(得分:0)
在Code Igniter版本3.0-dev中,您可以使用group_start
和group_end
在任何查询中添加组:
$this->db->select('col1, col2')
->where("category = 1")
->group_start()
->where("category = 2")
->or_where("category = 3")
->group_end();
产地:
SELECT `col1`, `col2`
FROM `table_name`
WHERE category = 1 AND (category = 2 OR category = 3);