IN
句のすべての値を確実に一致させる方法はありますか?
例:
INをIN (5,6,7,8)
として使用できます。
複数の行にわたってAND
のように機能する必要があります。
PDATE:これは、指定されたパラメーターに適合するdbの会社をリストするために必要です。会社と分類法は多対多の関係です。私はYiiフレームワークを使用しています。そして、これは私のコントローラのコードです:
public function actionFilters($list)
{
$companies = new CActiveDataProvider('Company', array(
'criteria' => array(
'condition'=> 'type=0',
'together' => true,
'order'=> 'rating DESC',
'with'=>array(
'taxonomy'=>array(
'condition'=>'term_id IN ('.$list.')',
)
),
),
));
$this->render('index', array(
'companies'=>$companies,
));
}
あなたはこのようなことをすることができます:
select ItemID
from ItemCategory
where CategoryID in (5,6,7,8)
group by ItemID
having count(distinct CategoryID) = 4 <--this number is # of unique items in IN clause
スキーマとサンプルデータを提供していただければ、より適切な回答を提供できます。
SELECT ItemID
FROM ItemCategory
WHERE (
(CategoryID = 5) OR
(CategoryID = 6) OR
(CategoryID = 7) OR
(CategoryID = 8)
)
GROUP BY ItemID
HAVING COUNT(DISTINCT CategoryID) = 4