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

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 q091.sql REM REM Find all customers who have a loan at the bank and REM the cities in which they live. REM S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1REM
 2REM q091.sql
 3REM
 4REM Find all customers who have a loan at the bank and
 5REM the cities in which they live.
 6REM
 7
 8SELECT B.customername, C.customercity
 9FROM Borrower B, Customer C
10WHERE B.customername = C.customername;