Yurttas/PL/DBL/postgres/F/01/Movies/q09.sql
Jump to navigation
Jump to search
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;