Yurttas/PL/DBL/mssql/F/01/SPJ/q13.sql

From ZCubes Wiki
Revision as of 04:41, 3 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">→‎REM REM q13.sql REM REM Delete all projects for which there are no shipments. REM: DELETE FROM Projects WHERE JN...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1/*
 2REM
 3REM q13.sql
 4REM
 5REM Delete all projects for which there are no shipments.
 6REM
 7*/
 8
 9DELETE FROM Projects
10WHERE JN NOT IN (SELECT JN
11                 FROM Shipments);