Yurttas/PL/DBL/oracle/F/01/Bank/q011.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 q011.sql REM REM Find customer by any(&1) attribute from REM any branch('&2') who has a loan. REM REM &1(attribut...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM q011.sql
 2REM
 3REM Find customer by any(&1) attribute from
 4REM any branch('&2') who has a loan.
 5REM
 6REM &1(attribute) and '&2'(value) are interactive values.
 7REM
 8
 9SELECT &1
10FROM Borrower
11WHERE branchname LIKE '&2%';