Write a SQL Query to find the movie_title and name of director (first and last names combined) who directed a movie that casted a role as ‘SeanMaguire’.
Output Schema:
director_name,movie_title
NOTE:
Example Output:
director_name,movie_title
AlfredHitchcock,Vertigo
Schema Design:
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.