数据库SQL实战题:查找描述信息中包括robot的电影对应的分类名称以及电影数目(教程)
film表
字段 说明
film_id 电影id
title 电影名称
description 电影描述信息
create table if not exists film (
film_id smallint(5) not null default ‘0’,
title varchar(255) not null,
description text,
primary key (film_id));
category表
字段 说明
category_id 电影分类id
name 电影分类名称
last_update 电影分类最后更新时间
create table category (
category_id tinyint(3) not null ,
name varchar(25) not null, last_update timestamp,
primary key ( category_id ));
film_category表
字段 说明
film_id 电影id
category_id 电影分类id
last_update 电影id和分类id对应关系的最后更新时间
create table film_category (
film_id smallint(5) not null,
category_id tinyint(3) not null, last_update timestamp);
查找描述信息中包括robot的电影对应的分类名称以及电影数目,而且还需要该分类对应电影数量>=5部
题意难理解。
就是
找出描述信息包含 “robot” 的电影分类和数量,
对每一个分类,在 film_category 表中该分类下所有电影的数量需要 >=5。
需要多建一个表来找出在 film_category 表中电影的数量需要 >=5的分类。
select c.name,count(f.film_id) from film f,category c,film_category fc,(select category_id from film_category group by category_id having count(film_id)>=5) as tmp where f.description like '%robot%' and f.film_id=fc.film_id and c.category_id=fc.category_id and c.category_id=tmp.category_id