Yurttas/PL/DBL/postgres/F/01/Movies/q02.sql

Revision as of 00:46, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM q02.sql REM REM Find all movies of 1998 ordered by title REM and studios in ascending order grouped REM by...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1/*
 2REM
 3REM q02.sql
 4REM
 5REM Find all movies of 1998 ordered by title
 6REM and studios in ascending order grouped 
 7REM by BW and color.
 8REM
 9*/
10
11SELECT current_schema();
12SET search_path to "movies";
13
14SELECT title, studioname
15FROM Movie
16WHERE year = 1998
17GROUP BY filmtype, title, studioname
18ORDER BY title ASC, studioname ASC;