Yurttas/PL/DBL/oracle/F/01/Bank/q071.sql

From ZCubes Wiki
Revision as of 22:51, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM q071.sql REM REM Find all customers of the 'Perryridge' branch who have REM an account but not a loan. REM (...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q071.sql
 3REM
 4REM Find all customers of the 'Perryridge' branch who have
 5REM an account but not a loan.
 6REM
 7
 8(SELECT customername
 9 FROM Depositor
10 WHERE branchname = 'Perryridge')
11MINUS 
12(SELECT customername
13 FROM Borrower
14 WHERE branchname = 'Perryridge');