题解 | #使用子查询的方式找出属于Action分类的所有电影对应的title,description#

使用子查询的方式找出属于Action分类的所有电影对应的title,description

http://www.nowcoder.com/practice/2f2e556d335d469f96b91b212c4c203e

表子查询,表连接之后作为筛选条件

-- 注意文本需要加 " ",以及表连接之后子查询连接时才需要别名 select t.title,t.description from film as t where t.film_id in (select e.film_id from category as c right join film_category as e on c.category_id=e.category_id where c.name="Action");

全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务