Yurttas/PL/DBL/oracle/F/01/Movie/q03.sql

From ZCubes Wiki
Jump to navigation Jump to search
 1REM
 2REM q03.sql
 3REM
 4REM Find the name and address of the producer 
 5REM of 'Good Will Hunting' movie.
 6REM
 7
 8SELECT name, address
 9FROM MovieExec, Movie
10WHERE title = 'Good Will Hunting'
11  AND producercn = cn;