Yurttas/PL/DBL/oracle/F/01/Movie/q01.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 q01.sql REM REM Find all movies produced by 'Paramount' REM studios in between 1990 - 1995. REM SELECT title...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q01.sql
 3REM
 4REM Find all movies produced by 'Paramount'
 5REM studios in between 1990 - 1995.
 6REM
 7
 8SELECT title
 9FROM Movie
10WHERE studioname = 'Paramount'
11  AND year BETWEEN 1990 AND 1995;