Yurttas/PL/DBL/postgres/F/01/Bank/q06.sql

Revision as of 00:38, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM q06.sql REM REM Find all customers of the Perryridge branch, i.e., find REM everyone who has an account, a ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1/*
 2REM
 3REM q06.sql
 4REM
 5REM Find all customers of the Perryridge branch, i.e., find
 6REM everyone who has an account, a loan, or both.
 7REM
 8*/
 9
10SELECT current_schema();
11SET search_path to "bank";
12
13(SELECT customername
14 FROM Depositor
15 WHERE branchname = 'Perryridge')
16UNION
17(SELECT customername
18 FROM Borrower
19 WHERE branchname = 'Perryridge');