52

有没有办法确保IN子句中的所有值都匹配?

例子:

我可以使用 IN 作为:IN (5,6,7,8)

我需要它像AND跨多行一样工作。

更新: 我需要这个来列出符合指定参数的 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,
    ));
}
4

2 回答 2

83

你可以这样做:

select ItemID
from ItemCategory
where CategoryID in (5,6,7,8) <-- de-dupe these before building IN clause
group by ItemID
having count(distinct CategoryID) = 4 <--this is the count of unique items in IN clause above

如果您提供您的架构和一些示例数据,我可以提供更相关的答案。

SQL 小提琴示例

于 2012-07-24T17:22:50.760 回答
5
 SELECT ItemID
     FROM ItemCategory
        WHERE (
               (CategoryID = 5) OR 
               (CategoryID = 6) OR 
               (CategoryID = 7) OR 
               (CategoryID = 8)
              )
     GROUP BY ItemID
 HAVING COUNT(DISTINCT CategoryID) = 4
于 2012-07-24T17:38:51.173 回答