Yurttas/PL/DBL/oracle/F/01/Bank/q04.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 q04.sql REM REM Suppose we want a relation showing customers and the branches REM from which they borrow, but...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q04.sql
 3REM
 4REM Suppose we want a relation showing customers and the branches
 5REM from which they borrow, but do not care about the amount of the
 6REM loan, or the loan number.
 7REM
 8
 9SELECT branchname, customername
10FROM Borrower;