Yurttas/PL/DBL/oracle/F/01/Bank/u08.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 u08.sql REM REM Suppose that we want to provide all loan customers in the REM `Perryridge' branch with a $200...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM u08.sql
 3REM
 4REM Suppose that we want to provide all loan customers in the
 5REM `Perryridge' branch with a $200 savings account.(Let the
 6REM loannumber serve as the accountnumber for the new savings account.)
 7REM
 8
 9INSERT INTO Depositor
10  SELECT branchname, loannumber, customername, 200
11  FROM Borrower
12  WHERE branchname = 'Perryridge';