题解 | #查找描述信息中包含robot的电影对应的分类名称以及电影数目,而且还需要该分类对应电影数量>=5部#
查找描述信息中包含robot的电影对应的分类名称以及电影数目,而且还需要该分类对应电影数量>=5部
http://www.nowcoder.com/practice/3a303a39cc40489b99a7e1867e6507c5
where 条件里 加子查询
select c.name, count(*) from film a join film_category b on a.film_id = b.film_id join category c on b.category_id = c.category_id where description LIKE ('%robot%') and b.category_id IN (select category_id from film_category group by category_id having count(*) >=5) group by b.category_id