30.使用子查询的方式找出属于Action分类的所有电影对应的title,description
使用子查询的方式找出属于Action分类的所有电影对应的title,description
http://www.nowcoder.com/questionTerminal/2f2e556d335d469f96b91b212c4c203e
select title,description from film f where f.film_id in (select fc.film_id from category c join film_category fc on c.category_id=fc.category_id where name='Action')
数据分析阿宇君的SQL题解 文章被收录于专栏
数据分析的SQL题目