Question: Given the below table definitions write a query to list the film title and langue of all films in which Ryan Smith is an actor

Given the below table definitions write a query to list the film title and langue of all films in which Ryan Smith is an actor If there are multiple actors named Ryan Smith in the same movie, it should be listen once for each Ryan Smith acting in the film. CREATE TABLE actor (Id int primary key, Fnamevarchar(255), Lname varchar(255)): CREATE TABLE language (Id int primary key, Language varchar(255)): CREATE TABLE film (Id int primary key, Title varchar (255) language id int, FOREIGN KEY (language id) REFNERECES language(id).): CREATE TABLE film actoc (Fid int_ Aid int_ PRIMARY KEY (fid, aid) FOREIGN KEY (hd) REFERENCES film(id) FOREIGN KEY (aid) REFERENCES actors(id))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
