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.c...