Yurttas/PL/DBL/oracle/F/01/Movie/q06.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 q06.sql REM REM List the movies by title, director, and REM studio that are longer than 'Amistad' REM in the...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q06.sql
 3REM
 4REM List the movies by title, director, and 
 5REM studio that are longer than 'Amistad'
 6REM in the given Movie database.
 7REM
 8
 9SELECT title, studioname, name
10FROM MovieExec, Movie
11WHERE producercn = cn
12  AND length > (SELECT length
13                FROM Movie
14                WHERE title = 'Amistad');