0

我有以下基于标签获取产品的代码:

self::factory('user_product')
    ->join('items', 'INNER')->on('user_product.item_id', '=', 'items.id')
    ->join('user_tags', 'INNER')->on('items.id', '=', 'user_tags.item_id')
    ->join('tags', 'INNER')->on('user_tags.tag_id', '=', 'tags.id')
    ->where('tags.title', 'IN', $tags)
    ->order_by('items.created_at', 'DESC')->group_by('items.id')->find_all();

这会生成以下 SQL:

SELECT `user_product`.* FROM `user_products` AS `user_product`
INNER JOIN `items` ON (`user_product`.`item_id` = `items`.`id`) 
INNER JOIN `user_tags` ON (`items`.`id` = `user_tags`.`item_id`)
INNER JOIN `tags` ON (`user_tags`.`tag_id` = `tags`.`id`)
WHERE `tags`.`title` IN ('tag1', 'tag2')
GROUP BY `items`.`id`
ORDER BY `items`.`created_at` DESC

我想修改我的查询,使其仅返回user_products同时具有tag1and的查询tag2(在 where in 语句中)。所以我想我需要在后面添加以下内容WHERE

HAVING COUNT(DISTINCT `tags`.`title`) = 2

我将如何使用 Kohana 的 ORM 来做到这一点,目前我有以下但无法解决如何集成 COUNT 和 DISTINCT 方法:

->having_open()->having('tags.title','=','2')->having_close();
4

1 回答 1

1

使用以下方法使其工作:

->having_open()->having(DB::expr('COUNT(DISTINCT标签.标题)'),'=',2)->having_close();

于 2013-01-05T22:19:44.547 回答