Question: create table movies ( movie_id integer, name varchar(1000), score integer ); create table cast ( movie_id integer, cast_id integer, cast_name varchar(1000) ); Using the tables

create table movies ( movie_id integer, name varchar(1000), score integer );

create table cast ( movie_id integer, cast_id integer, cast_name varchar(1000) );

Using the tables created above, find the movies with score > 80 and has no cast members with name David. Output format: movie_id, score.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!