我正在尝试通过 ORM 运行查询,如下所示:
SELECT * from table where (fname like 'string%' or lname like 'string%')
AND (fname like 'string2%' or lname like 'string2%');
这是我到目前为止所拥有的:
$results = ORM::factory('profiles');
foreach ($strings as $string) {
$result->where('fname', 'like', "$string%");
$result->or_where('lname', 'like', "$string%");
}
但这并没有考虑括号。有任何想法吗?