题解 | #查找描述信息中包含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
全部评论

相关推荐

oppo 应用软开 22*15+0.5*12
拿到了ssp完美:真的坎坷,但是你至少拿到这么多offer了!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务