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

From ZCubes Wiki
Revision as of 23:01, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM q03.sql REM REM Find the name and address of the producer REM of 'Good Will Hunting' movie. REM SELECT name...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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;