У меня есть таблица, в которой идентификаторы категорий хранятся в БД в виде значений, разделенных запятыми, поэтому мне нужно искать другой массив в этих значениях, разделенных запятыми.
Надо искать $required_ids_array
в Posts.category_ids
$required_ids_array = Array (
[0] => 14
[1] => 15
[2] => 16
[3] => 25
[4] => 35
);
if(isset($required_ids_array)){
foreach ($required_ids_array as $storeId) {
$condition = array ();
$condition ['AND'] ['Post.status']=1;
$blogs = $this->Post->find('all', array(
'conditions' => $condition,
'order' => 'Post.id.DESC',
'limit'=>'4',
'FIND_IN_SET(\''.$storeId.'\',Post.category_ids)')
);
}
заранее спасибо
Это решение сработало для меня 🙂
$blogs = $this->Post->find ( 'all', array (
'conditions' => array (
'Post.status' => 1,
'Post.id !=' => $id,
'FIND_IN_SET(?, Post.category_ids)' => array ($storeId) ),
'limit' => 4,
'order' => 'Blog.modified DESC'
) );
Вы должны записать свое условие FIND_IN_SET в массив условий WHERE. Вы написали это вне массива условий.
$blogs = $this->Post->find('all', array
('conditions' => array('Post.status' => 1, 'FIND_IN_SET(\''. $storeId
.'\',Post.category_ids)' )),'order' => 'Post.id
DESC','limit'=>'4');