我不知道这个sql查询的codeigniter db translate
%aN
有人给我一个帮助吗?
非常感谢
最好的问候
答案 0 :(得分:3)
我认为这是您正在寻找的查询。
{{1}}
答案 1 :(得分:0)
如果你依靠doc
您可以看到,如果您使用or_where,您将进行类似
的查询$this->db->where('name !=', $name);
$this->db->or_where('id >', $id);
// Produces: WHERE name != 'Joe' OR id > 50
答案 2 :(得分:0)
使用此代码。
$this->db->select('*');
$this->db->where('a', 1);
$this->db->or_where('b', 1);
$this->db->or_where('c', 1);
$this->db->or_where('d', 1);