Yurttas/PL/DBL/postgres/F/01/Bank/q090.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 q090.sql REM REM Find all customers who have a loan at the bank and REM the cities in which they live. REM ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1/*
 2REM
 3REM q090.sql
 4REM
 5REM Find all customers who have a loan at the bank and
 6REM the cities in which they live.
 7REM
 8*/
 9
10SELECT current_schema();
11SET search_path to "bank";
12
13SELECT Borrower.customername, customercity
14FROM Borrower, Customer
15WHERE Borrower.customername = Customer.customername;