Yurttas/PL/DBL/postgres/F/01/Movies/q09.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 q09.sql REM REM Delete all movie executives whose net REM worth is less than 25 million dollars. REM: ...")
1/*
2REM
3REM q09.sql
4REM
5REM Delete all movie executives whose net
6REM worth is less than 25 million dollars.
7REM
8*/
9
10SELECT current_schema();
11SET search_path to "movies";
12
13DELETE FROM MovieExec
14WHERE networth < 25;