题目是 使用子查询的方式找出属于Action分类的所有电影对应的title,description 如果用双子查询,思路是找Action也是就在category表where name=Action,那么应该select什么呢? film_category中的category_id与category表中的category_id关联。 所以where name=Action后应该select category表中的category_id,然后再从film_category中 过滤出category_id in 刚刚select出的category_id的。目前的程序为 from film_cat...